Open Tombert opened 4 years ago
Just to confirm that I'm not too off base with the codec, I ran this command:
$ ffprobe -v error -select_streams v:0 -show_entries stream=codec_name -of default=noprint_wrappers=1:nokey=1 title_t00.mkv
mpeg2video
I ran into the same problem. Is there a soltion? (I`m new to jetso nano - use the default sd-card-image and follow the described install instruction for ffmpeg)
Hi, Same here .. Is there a solution ? or can i force ffmpeg to NOT user jetson to decode the mpeg2video ?
If you omit anything to the left of the -i then it should be software decoded... Try and it see if your CPU gets slammed
This needs renamed, as the mpeg2 decoder is actually starting and working. You need to look closer at that log, or I guess know what you are looking at. Decoder opening.... [code] Opening in BLOCKING MODE NvMMLiteOpen : Block : BlockType = 267 NVMEDIA: Reading vendor.tegra.display-size : status: 6 NvMMLiteBlockCreate : Block : BlockType = 267 [/code] Encoder opening.... [code] NVMEDIA: NvMediaMixerInit: 119: frameWidth = 720, frameHeight = 480 NVMEDIA: DeinterlaceThread: 782: DeinterlaceThread is created Opening in BLOCKING MODE NvMMLiteOpen : Block : BlockType = 8 ===== NVMEDIA: NVENC ===== NvMMLiteBlockCreate : Block : BlockType = 8 [/code] As for the segfault, that could be due to a number of things, and without further investigation, or the core dump, or gdb info on where the bug is.....
Hello!
I was trying to decode a DVD rip I made using this command:
ffmpeg -c:v mpeg2_nvmpi -i title_t00.mkv -c:v hevc_nvmpi -c:a flac boondocks_01.mkv
, but this is the result I got:This also happens if I omit the hardware decoder (
-c:v mpeg2_nvmpi
) and just go straight to the-i
Is there something I'm missing or doing wrong?