That did it. ThanksOriginally Posted by Comfort Addict
+ Reply to Thread
Results 31 to 60 of 66
-
^ Yes, thanks comfort addict
Select full processing mode in the audio menu -
looking good... saved a avi that's working great and tiny file size.
Now to try mpeg4modifier... -
mpeg4modifier is telling me that it is already unpacked
Packed bitstream: No -
ok, I forgot you used no b-frames....that makes sense! sorry false alarm!
-
So now you can append your files.
http://www.afterdawn.com/guides/archive/virtualdub_join_avi.cfm -
Cannot append segment "L1.avi": The video streams have incompatible data formats.
(Mismatch detected in opaque codec data at byte 21 of the format data.) -
Try avidemux
Open the 1st file, then file=>append select main video
Set video & audio to "copy" , format to "avi", press save and enter extension (e.g. "mynewvideo.avi")
If that doesn't work, use mpeg4modifier to change the user data to match DivX versions
e.g. DivX503b etc. etc.. -
IT WORKS!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Thanks for your help!!!!
When the video is done I'll post a link for you to check it out. -
Originally Posted by Comfort Addict
In my experience, vdub is more "finicky" than avidemux for appending. Even simple things like header information can screw up the append -
Here is the vid you helped create.
It is full of inside jokes about the game Duels.com.
There's a player named The Unbeatable Larry who accidentally created his avatar as a female. In his quest to correct his gender other players had some fun and told him he would require a certain amount of fictional material called Noblestone:Coal. Larry's journey brings him to the offices of the game's creators who have recently abandoned their games.
http://www.youtube.com/watch?v=gAOWhvNexrs
WARNING - video does have naughty language.
Thanks again for your help! -
New question:
Is there a way for avisynth to move around a picture like a slide show does?
I want to be able to pan across the still images in the intro.
I just need a hint on what the command is, then I can look it up and hopefully find an example I can copy.
Thanks -
Originally Posted by n00bNeedsHelp
Alternatively, you could look at the Zoom plugin or the KenBurnsEffect function. -
Thanks
Which folder do I unzip the zoom zip into?
AviSynth 2.5/plugins?
AviSynth 2.5\FilterSDK\include?
or some files in one place and some in another?
Should the avisynth.h in the zip overwrite the avisynth.h in AviSynth 2.5\FilterSDK\include?
Then I copy the code for KenBurnsEffect(), ZoomBox(), ZoomBoxIt(), CalcBox() into the avs file?
Or do I add them to some other file where I can call them from the avs file?
Thanks -
You only need zoom.dll from the zoom zip - the other files (including avisynth.h) are source files, for reference only, but you probably want to look at the documentation in zoom.txt.
The simplest thing is to unzip zoom.dll into AviSynth 2.5\Plugins, that way it will be loaded automatically by Avisynth. However, you can put it anywhere and load it explicitly with LoadPlugin if you want.
The KenBurnsEffect code can be copied into your avs file if you like, but it's probably tidier to put them in a separate file and use Import to make them available to your script - that way you can reuse them more easily in other scripts. -
New problem - back to the original one.
I just made an intro with exactly 20 seconds of mp3 intro. This worked fine for my first 2 videos but now there is a problem with the 3rd.
If I play the intro3.avi it's fine. It's perfect.
But once I append the movie and watch it the intro plays about one extra second of the mp3 at the end - that is, right at the transition from intro to movie you hear the first second or half second of the mp3 repeated.
example "Some blah blah blah blah ----------------------------- blah blah blah End Some" movie starts
What do I do to prevent that?
Thanks -
Format : MPEG Audio
File size : 313 KiB
Duration : 20s 35ms
Overall bit rate : 128 Kbps
Genre : Blues
Audio
Format : MPEG Audio
Format version : Version 1
Format profile : Layer 3
Duration : 20s 35ms
Bit rate mode : Constant
Bit rate : 128 Kbps
Channel(s) : 2 channels
Sampling rate : 44.1 KHz
Resolution : 16 bits
Stream size : 313 KiB (100%)
I did the append with Avidemux -
Your audio and video probably don't match lengths. You probably have flush ends on the ones that worked, but you didn't do the 3rd one correctly
-
Wow - I just noticed it say 20s 35 ms duration.
When I cut the clip using Audacity it said 20.000000 seconds. Now I open it back up in Audacity and it's bigger than the 20.000000 I cut, pasted, and saved. It looks like 20.009774.
I'll try to recut it.
Thanks! -
Originally Posted by poisondeathray
Code:a = ImageSource("a.png", fps=25, end=99) b = ImageSource("b.png", fps=25, end=149) c = ImageSource("e.png", fps=25, end=249) a++b++c ConvertToYV12() vid=last aud=DirectShowSource("audio3.mp3").SSRC(48000) AudioDub(vid,aud)
-
Adding Trim(0,249) after audiodub would give you flush ends, but that is 20seconds. The last frame was given by the last still at 249 in that script
You would have to make the stills longer in duration to match, ending at 299 to match the new 30 sec audio, otherwise they will mismatch
e.g. use end 100, end 200, end 299 for each instead
If you want the audio to sync up you can shift it by using DelayAudio(). DelayAudio(0.5) is 500ms or 0.5sec. Negative values shift it the other direction -
Code:
a = ImageSource("a.png", fps=25, end=99) b = ImageSource("b.png", fps=25, end=149) c = ImageSource("e.png", fps=25, end=249) a++b++c ConvertToYV12() vid=last aud=DirectShowSource("audio3dlong.mp3").SSRC(48000) AudioDub(vid,aud) Trim(0,249)
I run this and get a 10 second intro avi.
I took the mp3 and cut it to about 23.516393 sec
I figured if in my end video the audio is restarting then it must not be filling the whole 20 seconds, so I take a longer cut, build it and trim it at 20 seconds - but I guess I don't get it.
Starting off - how do I cut the audio right? I still want a 20sec intro not 30sec.
I'll try the delay command and see what it does.
Thanks -
yes my math sucks
25fps , so 10 sec is 250 frames
20 sec is 500 frames => Trim(0,499)
30 sec is 750 frames => Trim(0,749)
Code:a = ImageSource("a.png", fps=25, end=250) b = ImageSource("b.png", fps=25, end=500) c = ImageSource("e.png", fps=25, end=749) a++b++c ConvertToYV12() vid=last aud=DirectShowSource("audio3dlong.mp3").SSRC(48000) AudioDub(vid,aud) Trim(0,749)
-
Code:
a = ImageSource("a.png", fps=25, end=99) b = ImageSource("b.png", fps=25, end=149) c = ImageSource("e.png", fps=25, end=249) a++b++c ConvertToYV12() vid=last aud=DirectShowSource("audio3.mp3").SSRC(48000) AudioDub(vid,aud) DelayAudio(0.5)
When I append the movie to the intro, it plays with the intro missing the last 2.5 words. -
I edited my post above^. You have to make the stills longer in duration to match
Don't use DelayAudio() unless you have overhanging ends on both sides of the audio,otherwise you can get silence gaps
e.g. the audio is 40 seconds, but the the section you want is 30 seconds in the middle (5 sec ends on each side). Then you would use delayaudio to shift it insync (but you would need more video at the beginning as well, and you would have to use a nonzero start for the trim e.g. Trim(100,850) )
Similar Threads
-
how to add intro video on multiavchd?
By ps3z in forum Authoring (Blu-ray)Replies: 1Last Post: 29th Jan 2012, 13:43 -
Completely Useless with this ...Add intro to already made DVD
By stressbag in forum Newbie / General discussionsReplies: 6Last Post: 5th Feb 2010, 06:02 -
How to add short intro image to video?
By Bytez in forum Newbie / General discussionsReplies: 1Last Post: 2nd Mar 2008, 08:00 -
What is the easiest method to add intro clip on DIVX ?
By rob3rtz in forum Newbie / General discussionsReplies: 3Last Post: 7th Oct 2007, 04:35 -
Need to add intro video before menu on several finished DVDs
By benracin in forum EditingReplies: 1Last Post: 1st Oct 2007, 11:29