logo Sign In

NewClear

User Group
Members
Join date
10-Feb-2019
Last activity
29-Mar-2020
Posts
4

Post History

Post
#1331145
Topic
Wallace & Gromit in "The Wrong Trousers" - Original Audio Preservation (Released)
Time

Dek Rollins said:

NewClear said:

If you want to slow it to 24fps, you can slow the audio down by encoding it like this:

ffmpeg -loglevel error -stats -n -i “The Wrong Trousers HD v2.mkv” -vn -sn -af asetrate=46080,aresample=48000 -c:a aac -b:a 192k -vbr 5 “The Wrong Trousers HD v2.mka”

And just remux it with the video in mkvtoolnix, de-selecting the original audio, and setting the video frame rate to 24fps.

I’m not well versed in ffmpeg, does this operation keep the correct audio pitch? I assume you’re posting this for the benefit of those who want to keep their file BD-compliant.

Pitch is lower.
I think the slowed down audio pitch sounds closer to what I remember from the VHS I used to watch.

The main part of it is this:

-af asetrate=46080,aresample=48000

It slows it down to 46080Hz rate, and then resamples it to 48000Hz.

This encodes to aac 192k:

-c:a aac -b:a 192k -vbr 5

Post
#1331121
Topic
Wallace & Gromit in "The Wrong Trousers" - Original Audio Preservation (Released)
Time

If you want to slow it to 24fps, you can slow the audio down by encoding it like this:

ffmpeg -loglevel error -stats -n -i “The Wrong Trousers HD v2.mkv” -vn -sn -af asetrate=46080,aresample=48000 -c:a aac -b:a 192k -vbr 5 “The Wrong Trousers HD v2.mka”

And just remux it with the video in mkvtoolnix, de-selecting the original audio, and setting the video frame rate to 24fps.