|
|
| andrewdessi |
| Posted: Jan 24 2014, 06:38 AM |
 |
|
Newbie

Group: Members
Posts: 4
Member No.: 37626
Joined: 8-January 14

|
Hi to everyone! How to join video file with .avs extension (AviSynth) using one of his scripts so that I can import it to VirtualDub? (They are MPEG-TS Stream file with .ts extension). Thank you! |
 |
| dloneranger |
| Posted: Jan 24 2014, 01:42 PM |
 |
|
Moderator
  
Group: Moderators
Posts: 2366
Member No.: 22158
Joined: 26-September 07

|
Generally you'd join them in the avisynth script itself As you haven't given your script here's a simple example
a=avisource("c:\file1.avi") b=avisource("c:\file2.avi") return(a++ #return file1 and file2 appended together
-------------------- MultiAdjust JoinWav WavNormalize FFMPeg Input Plugin v1827 UnSharpMask Windows7/8 Codec Chooser All FccHandlers Stuff inc. Installers for acm codecs AAC, AC3, LameMp3 |
 |
| IanB |
| Posted: Jan 24 2014, 10:20 PM |
 |
|

Avisynth Team Member
  
Group: Members
Posts: 121
Member No.: 22295
Joined: 23-October 07

|
Without the emoticon stuffing the b) :-
... return(a++b) #return file1 and file2 appended together |
 |
| dloneranger |
| Posted: Jan 24 2014, 10:39 PM |
 |
|
Moderator
  
Group: Moderators
Posts: 2366
Member No.: 22158
Joined: 26-September 07

|
damn those emoticons!!
-------------------- MultiAdjust JoinWav WavNormalize FFMPeg Input Plugin v1827 UnSharpMask Windows7/8 Codec Chooser All FccHandlers Stuff inc. Installers for acm codecs AAC, AC3, LameMp3 |
 |