Hi everyone,
2 questions for you:
1. does anyone know a way of joining/merging two video files in the same window?
I would like to create one video file in which the screen is divided in two parts (upper/lower) and put different video files in each one.....
2. I would like to create a video file underneath which is a running audio spectrogram/audio window....any ideas of which program to use?
Please see the attached photographs. I need to create a video file containing the above so please do not suggest the use of some media player....
Thank you in advance for your time and i apologize for the quality of my english.
I can work both in windows and in ubuntu (basic user).
thanx again for your time!
![]()
+ Reply to Thread
Results 1 to 6 of 6
-
-
You can use avisynth, see https://forum.videohelp.com/topic354183.html#1897540
-
Thank you very much! i would sure check this out.....
any ideas for question 2? -
There is an Avisynth filter called AudioGraph that might work for you.
http://avisynth.org.ru/docs/english/externalfilters/audiograph.htm
There is also a script called jdl-wrappers.avsi to show both channels in a stereo file. You save the script to your Avisynth Plugins folder.
http://avisynth.org/stickboy/
Here's an image of a test I did with Audiograph, and then using the AudioGraphWrapper script.
I used 3 Avisynth scripts to generate the AudioGraph sample, in order they are
Otway.avs
audio=DirectShowSource("C:\path\It's Not Unusual.mpg")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\AudGraph.dll")
return AudioGraph(AudioDub(BlankClip(length=4980, width=352, height=50, fps=25), audio), 0)
ConvertToRGB32()
v1=DirectshowSource("C:\path\It's Not Unusual.mpg", audio=true).ConvertToRGB32()
v2=AVISource("C:\path\Otway.avs")
StackVertical(v1, v2)
v1=DirectshowSource("C:\path\Johnny_Was.AVI").ConvertToRGB32().LanczosResize(3 52,338)
v2=AVISource("C:\path\OtwayAudiograph.avs")
StackVertical(v1, v2)
For the Audiographwrapper sample, I just needed two scripts since Audiographwrapper combines the video and graph automatically. I did change the default script to give a height of 25 pixels for each channel instead of the default 100 so that I could match the first sample output resolution.
The scripts for this one are:-
Otway2.avs
DirectShowSource("C:path\It's Not Unusual.mpg")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\AudGraph.dll")
AudioGraphwrapper(0)
v1=DirectshowSource("C:\path\Johnny_Was.AVI", audio=false).LanczosResize(352,338)
v2=AVISource("C:\path\otway2.avs")
audio=AVISource("C:\path\otway2.avs")
StackVertical(v1, v2).Audiodub (audio)
Hope this helps, was fun figuring it out!"Just another sheep boy, duck call, swan
song, idiot son of donkey kong - Julian Cope" -
That worked perfectly!!!!
Thank you very much for your time and patience!!!!! -
Great, glad you figured it out and got it to work!
"Just another sheep boy, duck call, swan
song, idiot son of donkey kong - Julian Cope"
Similar Threads
-
How to join multiple youtube videos ?
By skorpinok in forum EditingReplies: 1Last Post: 13th Jul 2011, 22:42 -
what is the correct way to join videos in avidemux?
By sgbd in forum Video ConversionReplies: 4Last Post: 3rd Sep 2010, 09:03 -
How can I join my H264 videos?
By Daninet in forum EditingReplies: 8Last Post: 17th Jun 2010, 15:44 -
Need to join two videos and then convert
By vkosinets in forum EditingReplies: 1Last Post: 17th Feb 2008, 07:10 -
I Can't Join 2 XviD Videos together!
By Nitro89 in forum EditingReplies: 10Last Post: 26th Jun 2007, 15:08