[LCA2015-Chat] un-ripping a DVD
Thomas Sprinkmeier
thomas.sprinkmeier at gmail.com
Thu Jan 22 21:42:35 AEDT 2015
On 01/22/15 11:01, Adam Baxter wrote:
> Just a note, the command line posted will encode the audio into MP3 -
> not standard for the mp4 container - it should be AAC. Depending on
> what version of ffmpeg you're using the command line will be different
> for encoding AAC
The original commandline with the AAC mod seems to work:
for x in *.webm
do
ffmpeg \
-i $x \
-c:v libx264 \
-preset medium \
-c:a libfaac \
-b:a 192k \
-profile:v baseline \
-level 3.0 \
${x/.webm/.mp4}
done
Thanks all!
Thomas
>
> On 22 January 2015 at 10:12, Ryan Verner <ryan.verner at gmail.com> wrote:
>> Ack, probably faster too, re-encoding isn't quick :)
>>
>>
More information about the Chat
mailing list