X-Git-Url: https://code.delx.au/transcoding/blobdiff_plain/47ae9da213b0d1ac8c5a5da0ab327dadab761490..d0f9f681128690bd70b4db38291686250ec50a79:/fix-pal-speedup diff --git a/fix-pal-speedup b/fix-pal-speedup index 27ddd48..b8cee2c 100755 --- a/fix-pal-speedup +++ b/fix-pal-speedup @@ -3,16 +3,16 @@ # Many DVDs released in Australia are sped up from 24fps to 25fps. # This script reverses the procedure, correcting the audio pitch. # The video framerate is adjusted without re-encoding. The audio is -# slowed, volume normalised, down-mixed to stereo and encoded as mp3. +# slowed, and encoded as AAC, preserving surround sound. if [ -z "$1" -o -z "$2" ]; then - echo "Usage: $0 destdir infile [infile ...]" + echo "Usage: $0 infile outfile" exit 1 fi set -xe FORCEFPS="24" -SLOWDOWN="0.96" +SLOWFILTER="-filter asetrate=46080,aresample=osr=48000:resampler=soxr" function mux_replace_audio { local infile="$1" @@ -23,66 +23,27 @@ function mux_replace_audio { mkvmerge -o "${outfile}" --default-duration "${trackid}:${FORCEFPS}fps" --no-audio "$infile" "$audiofile" } -function extract_audio { - local infile="$1" - local outfile="$2" - - mplayer \ - -noconfig all \ - -novideo \ - -ao "pcm:waveheader:file=${outfile}" \ - "$infile" -} - -function slow_audio { - local infile="$1" - local outfile="$2" - - sox \ - --temp "$tmpdir" \ - "$infile" \ - -t wav \ - "$outfile" \ - speed "${SLOWDOWN}" \ - gain -n -} - function encode_audio { - local infile="$1" - local outfile="$2" - - lame \ - --preset standard \ - "${infile}" "${outfile}" + ffmpeg \ + -i "$1" \ + -vn \ + $SLOWFILTER \ + -c:a libfdk_aac -vbr 3 \ + "$2" } function convert_file { local infile="$1" local outfile="$2" - local audio1="${tmpdir}/audio1.wav" - local audio2="${tmpdir}/audio2.wav" - local audio3="${tmpdir}/audio3.mp3" + local audiofile="${tmpdir}/audiofile.m4a" - extract_audio "${infile}" "${audio1}" - slow_audio "${audio1}" "${audio2}" - encode_audio "${audio2}" "${audio3}" - mux_replace_audio "${infile}" "${audio3}" "${outfile}" + encode_audio "${infile}" "${audiofile}" + mux_replace_audio "${infile}" "${audiofile}" "${outfile}" } -destdir="$1" -shift - -for infile in "$@"; do - outfile="$destdir/$(basename "$infile")" - - if [ -f "$outfile" ]; then - echo "Not overwriting $outfile" - continue - fi - - tmpdir="$(mktemp -d "${TMPDIR:-/var/tmp}/pal-XXXXXXXX")" - convert_file "$infile" "$outfile" - rm -rf "$tmpdir" -done - +infile="$1" +outfile="$2" +tmpdir="$(mktemp -d "${TMPDIR:-/var/tmp}/pal-XXXXXXXX")" +convert_file "$infile" "$outfile" +rm -rf "$tmpdir"