Which source loading function should be used for better frameaccuracy and quality(without audio/video sync problems)? FFVideoSource/FFAudioSource or DirectShowSource? When i use FFVideoSource/FFAudioSource with Virtualdub i get this errormessage: 'ffaudiosource: seeking is severaly broken' when trying to save the video. I have the newest plugins installed, so what could be the reason for this? And how can you use the Layer function together with ImageSource(), and FFVideoSource/FFAudioSource(arguments in AudioDub() ) without errors? When i use VirtualDubMod(mpeg input supported) the output video has no audio sync problems, but with an .avs input in the latest version of Virtualdub(same sync problems happen also with the .avs+Avidemux combination output), the output file video/audio is out of sync is several areas and also there are 'fast moving scenes'. So how can i define the avisynth script the best to cause for the best output?
+ Reply to Thread
Results 1 to 6 of 6
-
Last edited by yugurya; 22nd Jan 2012 at 01:28.
-
-
When i use Overlay, i get this error after a minute of successful saving: 'Avisynth read error: FFAudioSource: Seeking is severely broken' :
A = FFAudioSource("video.mpg").ConvertToRGB
V = FFVideoSource("video.mpg").ConvertToRGB
C = AudioDub(V, A)
p = ImageSource("photo.png")
Overlay(C, p)
When i use Layer, i get this error when importing the .avs to Virtualdub: 'Avisynth open failure: Layer image formats dont match' :
A = FFAudioSource("video.mpg").ConvertToRGB
V = FFVideoSource("video.mpg").ConvertToRGB
C = AudioDub(V, A)
p = ImageSource("photo.png")
Layer(C, p, "add")
Look at the tutorial at this url: http://www.avidemux.org/smf/index.php?topic=4397.0
FFmpegSource2(FFAudioSource/FFVideoSource) is recommended instead of MpegSource. So, what combination to use, FFmpegSource2+Layer or something else?Last edited by yugurya; 22nd Jan 2012 at 08:35.
-
As I said above, it requires RGB32 input, so use ConvertToRGB32().
You also need pixel_type="RGB32" in your ImageSource call.
Reading that link, it says "For MPEG-2 and VOB files "DGDecode" (DGIndex) is the preferred source filter." Actually, the source filter is called MPEG2Source (as recommended by manono), DGDecode.dll is the name of the DLL containing it.Look at the tutorial at this url: http://www.avidemux.org/smf/index.php?topic=4397.0
FFmpegSource2(FFAudioSource/FFVideoSource) is recommended instead of MpegSource.
Similar Threads
-
Loading m4v in Avisynth
By AlanHK in forum Video ConversionReplies: 7Last Post: 16th Sep 2009, 23:51 -
Understanding MKV loading in Avisynth
By carlmart in forum Video ConversionReplies: 38Last Post: 28th May 2009, 07:39 -
Loading H264 onto avisynth script
By carlmart in forum Blu-ray RippingReplies: 21Last Post: 10th May 2009, 14:22 -
AviSynth and a WMV source
By shorto in forum Newbie / General discussionsReplies: 3Last Post: 22nd Feb 2008, 08:04 -
AviSynth not recognizing source type (source is animation)
By happypyro in forum DVD RippingReplies: 1Last Post: 5th Sep 2007, 14:48


Quote
