Hi but sorry I'm_a_cAt
please I wonder
is there a way to concatenate more .mxf files
C0001.mxf
C0002.mxf
C0003.mxf
C0004.mxf
C0005.mxf
C0006.mxf
C0007.mxf
...
and so on
so that a unique .avs open all thsi .mxf files with the audio part of each file?
thanks
ps: if a .mxf file does not have the audio part, avisynth should put a silence in audio but the sync audio/video for each file have to be keep, thanks
+ Reply to Thread
Results 1 to 7 of 7
-
-
Code:
file1 = SOURCEFILTER("C0001.mxf") #replace "SOURCEFILTER" with the source filter of your choice file2 = SOURCEFILTER("C0002.mxf") file3 = SOURCEFILTER("C0003.mxf") file1++file2++file3
http://avisynth.nl/index.php/Splice -
Code:
SetMemoryMax(16) LoadPlugin("v:\automazioneclip\avisynth\plugins\LSMASHSource.dll") file1 = LWLibavVideoSource("W:\brisighella\C0060.MXF") file2 = LWLibavVideoSource("W:\brisighella\C0061.MXF") file3 = LWLibavVideoSource("W:\brisighella\C0062.MXF") file1++file2++file3
-
SetMemoryMax(16)
LoadPlugin("v:\automazioneclip\avisynth\plugins\LSMASHSource.dll")
videofile1 = LWLibavVideoSource("W:\brisighella\C0060.MXF")
audiofile1 = LWLibavAudioSource("W:\brisighella\C0060.MXF")
file1 = audiodub(videofile1,audiofile1)
videofile2 = LWLibavVideoSource("W:\brisighella\C0061.MXF")
audiofile2 = LWLibavAudioSource("W:\brisighella\C0061.MXF")
file2 = audiodub(videofile2,audiofile2)
videofile3 = LWLibavVideoSource("W:\brisighella\C0062.MXF")
audiofile3 = LWLibavAudioSource("W:\brisighella\C0062.MXF")
file3 = audiodub(videofile3,audiofile3)
file1++file2++file3 -
There are functions to create black video and silence. I'm sure it's possible to make it a bit automatic but I'm too lazy to give you an example. Try a search.
http://avisynth.nl/index.php/BlankClip
http://avisynth.nl/index.php/Tone
Similar Threads
-
Multiple files how do i get average video/audio bitrate info
By Psyko in forum Newbie / General discussionsReplies: 2Last Post: 10th Dec 2015, 15:47 -
How to concatenate two or more wmv files to one large file?
By bartek6 in forum LinuxReplies: 5Last Post: 30th Sep 2015, 04:13 -
how to concatenate VOB or AVI files
By hedron in forum DVD RippingReplies: 6Last Post: 17th May 2013, 04:22 -
Merge multiple audio tracks from different files into 1 video file - sync
By heinza in forum Newbie / General discussionsReplies: 2Last Post: 11th Jan 2012, 03:29 -
Standardising audio on multiple video files
By scorpiousdelectus in forum Video ConversionReplies: 3Last Post: 2nd Apr 2011, 12:48