Yeah I'm passed that point with this one... *blush* looks like I'll have to redo it. I've learned MY lesson...Nach wrote:Making a video in segments means the input recording, not the conversion to AVI.

Moderator: ZSNES Mods
Then it mentions something about rewriting the audio header, and eventually gives another error:Virtualdubmod has detected an improper VBR audio encoding in the source AVI file (audio stream 1).
Nothing else happens after that. And the video shows completely black in VDubMod.AVI: truncated or invalid MP3 Audio format detected. (18 bytes, should be 30). Attempting to fix
Yeah it was x264 Lossless option.creaothceann wrote:Maybe it used x264's "lossless" mode? That's the only reason I could think of...
What I do for the audio is keeping it uncompressed all the time, and as the final step loading it in VirtualDubMod and selecting Lame MP3 compression (pic). This will be constant bitrate.
Needs the Lame Windows codec installed (included with Lame).
Code: Select all
v1 = AVISource("MySourceFile.avi").ConvertToRGB32
v2 = v1.ConvertToYV12 .ConvertToRGB32
v3 = Subtract(v1, v2)
v4 = BlankClip(v1)
L1 = StackHorizontal(v1, v3)
L2 = StackHorizontal(v2, v4)
StackVertical(L1, L2)
Code: Select all
AVISource(...)
AssumeFieldBased
Weave
VerticalReduceBy2
Code: Select all
<jmr> bsnes has the most accurate wiki page but it takes forever to load (or something)
Code: Select all
function BlendFields(clip) {
clip
(FrameCount % 2 == 1) ? DuplicateFrame(FrameCount - 1) : nop
Overlay(SelectEven, SelectOdd, opacity=0.5)
}