Reply to comment
bash script using ffmpeg for making archos compatible mpeg4 with mp3
Here is the script I use now to convert stuff to a decent format for my Archos 705:
[geshifilter-code] #!/bin/bash INPUT=$1 ffmpeg \ -ab 128 \ -acodec mp3 \ -sameq \ -vcodec mpeg4 \ -mbd rd \ -flags +4mv+trell+aic \ -cmp 2 \ -subcmp 2 \ -g 300 \ -s 400x300 \ -aspect 4:3 \ -i "$INPUT" \ "$INPUT.lofi.avi" #END [/geshifilter-code]
Bet there are some optimizations I could use, feel free to leave a comment if you know some!
Recent comments
5 years 46 weeks ago
6 years 5 weeks ago
6 years 7 weeks ago
6 years 7 weeks ago
6 years 8 weeks ago
6 years 23 weeks ago
6 years 29 weeks ago
6 years 36 weeks ago
6 years 43 weeks ago
6 years 49 weeks ago