Hey,
I am working on creating a video for an arm based embedded device which uses a Hantro hardware decoding chip.
I am having issues with the video stuttering whilst playing due to the slow hardware in the device.
I am using the following command with FFMPEG:
ffmpeg -i wildlife.mp4 -c:v libx264 -profile:v baseline -level 3.0 -b:v 1000k -movflags +faststart -pix_fmt yuv420p -vf scale=720x480 -r 24 -codec:a libmp3lame -q:a 6 -ar 22050 -ac 2 output.avi
Is there anything I can add/ change with this to create an easier to decode file?
+ Reply to Thread
Results 1 to 2 of 2
-
-
use -tune fastdecode and set vbv options for max rate and buffer. You should always specify maxrate and bufsize for all device targets. I'm not famiilar with the device/chip but you should use values appropriate for the chip. If your goal is 1000kbps, try -x264opts vbv-bufsize=2000:vbv-maxrate=1000
Your output file is "output.avi", which doesn't make sense to use "AVI" container if you're using -movflags, I'm going to assume it's a typo
Similar Threads
-
Creating HLS variants with FFMPEG
By madkap in forum Video ConversionReplies: 1Last Post: 21st Oct 2015, 03:41 -
batch file ffmpeg ffprobe export media info to text file
By doomtomb in forum Newbie / General discussionsReplies: 1Last Post: 21st Jan 2014, 20:57 -
decode 5.1 matrix surround wav file to 6 mono wav files
By Zerrax in forum AudioReplies: 2Last Post: 24th Nov 2013, 07:39 -
Creating a video file with FFMPEG using a single image (Mask)
By GoldenMeanie in forum Video ConversionReplies: 7Last Post: 8th Jun 2013, 15:18 -
Creating movie (mov) reference files with ffmpeg or ffmbc
By musicman in forum Video ConversionReplies: 3Last Post: 6th Jul 2012, 18:40