View Single Post
Old 5th May 2010, 15:11   #1296  |  Link
Flux
Registered User
 
Flux's Avatar
 
Join Date: Jul 2004
Location: Finland
Posts: 109
Here is Avisynth script:

LoadPlugin("G:\AVStoDVD\Lib\ffms2.dll")

Audio = FFAudioSource("G:\testi\big_buck_bunny_720p_surround.avi", track = -1, cachefile = "F:\DVD\Temp\A2DFFA_" + String(Rand()) + ".cache")
Video = FFVideoSource("G:\testi\big_buck_bunny_720p_surround.avi", track = -1, cachefile = "F:\DVD\Temp\A2DFFV_" + String(Rand()) + ".cache", seekmode = 0)

Video = Video.ConvertToYV12
#Using DGPulldown to upsize FPS
Video = Video.Spline36Resize(720,576)

Audio = Audio.Normalize()

AudioDub(Video, Audio)

If I add "AssumeFPS(25,true).SSRC(48000)" as last line and remove "#Using DGPulldown to upsize FPS" line, Avisynth throws "FFAudioSource: The index does not match the source file" red line error in Preview and Edit mode.

How I should use PAL 4% speed-up with FFMpegSource?
__________________
Interlaced, 50 Hz and 60 Hz, 24 fps film. These are evil artifacts from the past which still possess modern video technology.
Flux is offline   Reply With Quote