0
I got a DVD Player with USB support. It is a recent player (DVD-225), but the documentation is sparse, but it does claim MPEG-4 and DivX support.
Now, I have got certain AVI files to play via USB, but everything else fails. I looked at the metadata of an AVI file that worked via ffprobe, and got the following:
Now, I figured that if I can replicate the above, I can convert most things to play via USB, even if it isn't the most up to date codecs.Code:Metadata: encoder : Lavf58.17.101 Duration: 00:58:30.94, start: 0.000000, bitrate: 1336 kb/s Stream #0:0: Video: mpeg4 (Simple Profile) (xvid / 0x64697678), yuv420p, 640x290 [SAR 1:1 DAR 64:29], 1196 kb/s, 23.98 fps, 23.98 tbr, 23.98 tbn, 23.98 tbc Stream #0:1: Audio: mp3 (U[0][0][0] / 0x0055), 48000 Hz, stereo, fltp, 128 kb/s
I've tried various combinations, but they all fail. The closest I got was by using the following shell script:
This has a strange result that it will play the audio track, but not the video track. The metadata I got from this was:Code:for i in *.avi; do ffmpeg -i "$i" -c:v mpeg4 -vtag divx -qscale:v 3 -c:a libmp3lame -qscale:a 4 "_${i%.*}.avi"; done
Does anyone know where I am going wrong with this ? I've converted AVI, MKV and MP4 files, and while they work on my computer, the DVD player seems to be very picky.Code:Metadata: encoder : Lavf58.45.100 Duration: 00:58:07.99, start: 0.000000, bitrate: 3026 kb/s Stream #0:0: Video: mpeg4 (Simple Profile) (divx / 0x78766964), yuv420p, 1280x720 [SAR 3:4 DAR 4:3], 2901 kb/s, 23.98 fps, 23.98 tbr, 23.98 tbn, 24k tbc Metadata: title : ****************** Stream #0:1: Audio: mp3 (U[0][0][0] / 0x0055), 48000 Hz, stereo, fltp, 109 kb/s Metadata: title : ******************
Any suggestions ?
Thanks Neil
+ Reply to Thread
Results 1 to 6 of 6
-
-
You probably have to downscale to SD resolutions. Width less than 720, height less than 576. Add "-vf scale=720:-4"
-
You can also try to connect your USB Stick directly to yourTV, without the DVD Player, and use the TVs Media Player.
-
Actually, I have tried that. This is actually for my girlfriend. Her TV is over 10 years old, so is not really a smart TV. It only has very limited USB support. I got her the DVD player to overcome this. Remember that not everyone has piles of money at the moment and can splash out on new smart TV's.
To be honest, I think rigging up a Roku or a Raspberry Pi might be the best solution in the future. -
-
FAT32. It obviously reads it, because I have managed to play certain AVI files on it.
Similar Threads
-
ffmpeg vs Handbrake for MKV to MP4 conversion
By Snoopy329 in forum EditingReplies: 3Last Post: 15th Feb 2020, 14:14 -
FFMPEG Prores mov to 4K HDR Mp4 or Mkv
By ceppu36 in forum Newbie / General discussionsReplies: 1Last Post: 24th Sep 2019, 15:58 -
FFMPEG Conversion from MKV to MP4 returns a empty MP4 file?
By lolmaisine in forum Video ConversionReplies: 4Last Post: 6th Mar 2019, 07:45 -
ffmpeg convert from mkv to mp4 [matroska,webm @ 0x1d06640] Read error at
By blurry in forum Video ConversionReplies: 6Last Post: 15th Jan 2018, 05:36 -
FFmpeg error message when converting MKV to MP4
By BigPhil1 in forum Video ConversionReplies: 1Last Post: 15th Jun 2016, 14:59