i'm trying to encode 3 transport streams. i ran them through dgindex but they have different PIDs so cant add all together so ended up with 3 d2v files. is there a way to add all 3 into one script? i've tried a few random ideas that popped into my head and searched both avisynth forums, but cant see anything that would help.
You assign each d2v to a different variable in the avs. Example: clip1=mpeg2source("....\1.d2v") clip2=mpeg2source("....\2.d2v") clip3=mpeg2source("....\3.d2v") Then you can append, trim, filter, do whatever you like.
ahhhh, thank you both :goodpost: i was trying things like --------------------------------- mpeg2source("1.d2v") mpeg2source("2.d2v") and mpeg2source("1.d2v"+"2.d2v") --------------------------------- thank you both, will try tonight. you've made my life a lot easier :)