I know that their aspect ratio, frame rates, etc are very different so how would I be able to combine them? This is their info:
First Part
General
Complete name : C:\VTS_01_6a.avi
Format : AVI
Format/Info : Audio Video Interleave
File size : 350 MiB
Duration : 43mn 35s
Overall bit rate : 1 123 Kbps
Writing application : VirtualDubMod 1.5.4.1 (build 2178/release)
Writing library : VirtualDubMod build 2178/release
Video
Format : MPEG-4 Visual
Format profile : Streaming Video@L1
Format settings, BVOP : Yes
Format settings, QPel : No
Format settings, GMC : No warppoints
Format settings, Matrix : Custom
Codec ID : XVID
Codec ID/Hint : XviD
Duration : 43mn 35s
Bit rate : 986 Kbps
Width : 672 pixels
Height : 368 pixels
Display aspect ratio : 16/9
Frame rate : 29.970 fps
Resolution : 24 bits
Colorimetry : 4:2:0
Scan type : Progressive
Bits/(Pixel*Frame) : 0.133
Stream size : 307 MiB (88%)
Writing library : XviD 1.2.0.dev47 (UTC 2006-11-01)
Audio
Format : MPEG Audio
Format version : Version 1
Format profile : Layer 3
Codec ID : 55
Codec ID/Hint : MP3
Duration : 43mn 35s
Bit rate mode : Constant
Bit rate : 128 Kbps
Minimum bit rate : 128 Kbps
Channel(s) : 2 channels
Sampling rate : 48.0 KHz
Resolution : 16 bits
Stream size : 39.9 MiB (11%)
Alignment : Aligned on interleaves
Interleave, duration : 67 ms (2.00 video frames)
Interleave, preload duration : 504 ms
Writing library : LAME3.97b
Encoding settings : CBR
Second Part
General
Complete name : C:\VTS_01_6b.avi
Format : AVI
Format/Info : Audio Video Interleave
File size : 177 MiB
Duration : 16mn 3s
Overall bit rate : 1 543 Kbps
Writing library : VirtualDub build 18160/release
Video
Format : MPEG-4 Visual
Format profile : Streaming Video@L1
Format settings, BVOP : Yes
Format settings, QPel : No
Format settings, GMC : No warppoints
Format settings, Matrix : Default
Muxing mode : Packed bitstream
Codec ID : XVID
Codec ID/Hint : XviD
Duration : 16mn 3s
Bit rate : 1 403 Kbps
Width : 640 pixels
Height : 480 pixels
Display aspect ratio : 4/3
Frame rate : 29.970 fps
Resolution : 24 bits
Colorimetry : 4:2:0
Scan type : Progressive
Bits/(Pixel*Frame) : 0.152
Stream size : 161 MiB (91%)
Writing library : XviD 49
Audio
Format : MPEG Audio
Format version : Version 1
Format profile : Layer 3
Codec ID : 55
Codec ID/Hint : MP3
Duration : 16mn 3s
Bit rate mode : Constant
Bit rate : 128 Kbps
Channel(s) : 2 channels
Sampling rate : 48.0 KHz
Resolution : 16 bits
Video delay : 17ms
Stream size : 14.7 MiB (8%)
Alignment : Split accross interleaves
Interleave, duration : 33 ms (1.00 video frame)
Interleave, preload duration : 500 ms
+ Reply to Thread
Results 1 to 10 of 10
-
-
Combine them how? AVI, DVD, what? The framerate of both is the same. The audio bitrate of both is the same. The main stumbling block here is the different resolution of the 2 AVIs.
Since the widescreen one is the longer of the two, you probably want to make the second one widescreen also by adding black to the right and left sides. Exactly how you'd do that is determined by the output format you want. In any event, reencoding will be necessary for at least one of them. -
The original plan was to combine them in an avi widescreen or tv aspect ratio which ever looks better and then make it into a DVD. I was going to use AVI2DVD but that has been given me problems lately so I wil probably use other software. I did try winff which did help alot in making the avis but you can't seem to be specific about the aspect ratios.
Oh by the way, these avis don't have the same frame rate because when trying Virtualdub 1.8.8 I got an error message saying that the first stream is 29.97003 samples/sec and the second stream is 29.97000 samples/sec. -
Originally Posted by Han Solo1
A=AVISource("C:\Path\To\Video1,avi",False)#False disables the audio
B=AVISource("C:\Path\To\Video2,avi",False)#False disables the audio
A=A.Lanczos4Resize(720,480)
A=A.AssumeFPS(29.97)
B=B.Lanczos4Resize(528,480)
B=B.AddBorders(96,0,96,0)
B=B.AssumeFPS(29.97)
A+B
ConvertToYUY2()#For CCE and some other encoders
Demux, join the audio separately, make it DVD compliant (convert to AC3 audio), and rejoin it with the video during authoring. It can also be joined in the script. The 672x368 video just needs a straight resize to 720x480. The 640x480 one gets resized to 528x480 and then has black pillar bars added to the sides to fill it out to 720x480 before being joined to the first one. Encode as 16:9.
That's if they really have to be joined before making the DVD (they don't). I don't use the programs you mentioned so I can't help there. However, I believe FAVC (and I'm sure other programs) can do the job for you. Here's a guide:
http://www.digital-digest.com/articles/FAVC_Video_to_DVD_Guide_page1.html
Edit: I edited line 3 of the script later to correct a mistake. -
I have tried using FAVC and when I try to generate a DVD with these two files I get the following [img]https://forum.videohelp.com/images/guides/p1945465/.
Also I am new new to AviSynth scripting so when I copy and paste the script to avsedit I get the following when I try to preview [/img]
Also as I am new to this scripting so I saved the script and tried to load it to Virtualdub 1.8.8 and it wouldn't load because it is in an avs format. -
As for the line 3 error, that's my mistake. Instead of A=Lanczos4Resize(720,480), it should be A=A.Lanczos4Resize(720,480). I apologize for the error. And you edited the first 2 lines to reflect your different names and paths, I guess?
The FAVC guy, Mr. Odwin, is a frequent visitor to this forum. Maybe he'll see this thread, because I have no idea what the error means.
Also as I am new to this scripting so I saved the script and tried to load it to Virtualdub 1.8.8 and it wouldn't load because it is in an avs format. -
You were right about the script error and Vdub does work with the script by the two methods that you mentioned. I was trying to run the script through the run script option under file. Vdub is running the script but the projected file size is 106GB. That seems to be too big and the only reason that I wanted to combine the the two files in this way is just to have a consistent resolution when viewing the video. Anyhow I stopped it from running any further.
-
Vdub is running the script but the projected file size is 106GB" Who needs Google, my wife knows everything"
-
Unless you have a pressing need to actually merge you can load the 2 AVIs into DVD Flick (free). Hit 'Edit' and set both to 16:9. You'll have a final 16:9 DVD where both AR's are properly displayed (the 4:3 source will have side bars).
Have done it with music vids, works fine. -
Originally Posted by Han Solo1
Or, if you still prefer going all-in-one, give MysticE's suggestion a try.
Similar Threads
-
DVD with 16:9 aspect ratio truncated on Vizio widescreen TV
By gschmidt in forum Authoring (DVD)Replies: 14Last Post: 29th Oct 2011, 17:48 -
Aspect ratio for SD Widescreen on YouTube
By matthewjohn23 in forum Video ConversionReplies: 9Last Post: 1st Nov 2010, 18:14 -
Converting from Mini DV - Problem with Aspect Ratio PAL Widescreen
By Videonisse in forum Capturing and VCRReplies: 9Last Post: 30th Jun 2009, 17:01 -
Watching AVIs in normal aspect ratio on a widescreen TV
By fiiido in forum Newbie / General discussionsReplies: 6Last Post: 9th Aug 2007, 07:05 -
Trouble converting widescreen AVIs to DVD format
By embreeb in forum Authoring (DVD)Replies: 7Last Post: 24th Jul 2007, 23:18