![]() |
| If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
| |||||||
| UK Digital Video (uk.rec.video.digital) For the discussion of all aspects of digital video, including all digital video formats, camera use, editing, post production & all associated equipment, hardware and software. Advertising is prohibited. |
| | Thread Tools | Display Modes |
|
#1
| |||
| |||
| Newbie :- Wanting to put two video images on top of each other. I'm interested in making some videos , basically i have two mpeg videos and i would like to be able to put one top of the other , but i'm unsure of what software i should be using , i'd be happy to use freeware software on a look cost software package , http://www.pinnaclesys.com version 11 seems to be a well priced piece of software , but will it enable me to do this task and much more? any info or links would be welcomed. |
|
#2
| |||
| |||
| "Dave T" NoSpam@NoSpam. wrote in message . .. Newbie :- Wanting to put two video images on top of each other. I'm interested in making some videos , basically i have two mpeg videos and i would like to be able to put one top of the other , but i'm unsure of what software i should be using , i'd be happy to use freeware software on a look cost software package , http://www.pinnaclesys.com version 11 seems to be a well priced piece of software , but will it enable me to do this task and much more? any info or links would be welcomed. Ulead's VideoStudio does what you need, too. I think most non-free video applications do. The thing to do is visit the user support forums for each application in particular and see which has the most helpful responses, and the least amount of infighting. |
|
#3
| |||
| |||
| Dave T wrote: Newbie :- Wanting to put two video images on top of each other. I'm interested in making some videos , basically i have two mpeg videos and i would like to be able to put one top of the other , but i'm unsure of what software i should be using , i'd be happy to use freeware software on a look cost software package , You can do that with a simple AviSynth script - something like this: vid_top = DirectShowSource("top-video.mpg") vid_bot = DirectShowSource("bot-video.mpg") StackVertical(vid_top, vid_bot) That assumes that you have a DirectShow MPEG-2 codec installed. You can find more information about AviSynth (and a download link) he http://avisynth.org/ Download VirtualDub as well, since that's a good tool for viewing what your AviSynth scripts churn out, and perhaps for saving the end result as an AVI: http://www.virtualdub.org/ You could also feed the .avs script as a source to an MPEG encoder, such as TMPGEnc. -- znark |
| Thread Tools | |
| Display Modes | |
|
|