Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion.

Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules.

 

Go Back   Doom9's Forum > General > Audio encoding

Reply
 
Thread Tools Search this Thread Display Modes
Old 12th March 2011, 10:46   #1  |  Link
ar
Registered User
 
Join Date: Feb 2009
Posts: 16
Resampling audio for PAL Telecine

Task.
I got some FILM material (23.976 fps): hd-video with audio. I want to make DVD from this. I decided to use PAL, so i need to make telecine conversation.

Details.
For video it is no big deal: just to assume new frame rate. But for audio this task should be a bit complicated, because i need to convert sample rate or use some TimeStretch-filter.
To keep it simple i decided to use sample rate conversion wich lead to little speed-up and corresponding pitch-effect. Input have 48kHz audio and 24000/1001 fps video, output audio should be 48kHz to, but output video should be 25 fps. So the sample rate conversation scheme should be:
  1. Assume new sr for input audio samples 48000/(24000/1001)*25=50050 (Hz);
  2. Convert sample rate back to 48kHz.

I've done this with commands:
Code:
ffmpeg -i ed-cm-st-16bit.wav\
       -acodec pcm_f32le -ac 2 -f f32le pipe:1 |\
ffmpeg -ar 50050 -ac 2 -acodec pcm_f32le -f f32le -i pipe:0\
       -acodec pcm_f32le -ac 2 -f wav f32le_st.wav &&\
fsrctool -q push -i f32le_st.wav -o outst.wav -r 48000
Question.
I've used FSRC-filter (libfsrc) due to it's outstanding quality. Is there someone who know wich SRC-filter ffmpeg utilises? The manual says, it's «high quality polyphase filter». Is this filter homegrown or it is from libsrc (secret-rabbit-code)? Also, originaly i used to use SSRC-filter from Naoki Shibata.

PS:
Comparison of SRC-filters at http://src.infinitewave.ca/
ar is offline   Reply With Quote
Old 15th March 2011, 14:55   #2  |  Link
pandy
Registered User
 
Join Date: Mar 2006
Posts: 1,049
don't forget about http://sox.sourceforge.net/
pandy is offline   Reply With Quote
Old 14th February 2012, 09:00   #3  |  Link
smok3
brontosaurusrex
 
smok3's Avatar
 
Join Date: Oct 2001
Posts: 2,392
how do you assume another framerate with ffmpeg? (the equivalent of assumefps(25))

(I need something general for going from 23.xx or 24 fps to 25 fps)
__________________
certain other member

Last edited by smok3; 14th February 2012 at 09:03.
smok3 is offline   Reply With Quote
Old 14th February 2012, 11:04   #4  |  Link
Ghitulescu
Registered User
 
Ghitulescu's Avatar
 
Join Date: Mar 2009
Location: Germany
Posts: 5,769
I used sox once to convert a movie audio track to a CD, the result was extremely good. I understand that many audiophiles protest against sampling conversion, but for simple voice and movie sounds I don't think you'll have quality issues.
__________________
Born in the USB (not USA)
Ghitulescu is offline   Reply With Quote
Reply

Tags
pal, src, telecine

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 18:00.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.