Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion.

Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules.

 

Go Back   Doom9's Forum > Announcements and Chat > General Discussion

Reply
 
Thread Tools Search this Thread Display Modes
Old 5th September 2009, 14:08   #21  |  Link
Gavino
Avisynth language lover
 
Join Date: Dec 2007
Location: Spain
Posts: 3,431
Sorry I confused you with that. At that point, I was referring to the default length being 1001 frames, and thinking from your 41 secs timing that you probably had set the rate to 25fps yourself. In an earlier post, you had used 29.97.

The actual frame rate used for this probably doesn't matter since you have no moving pictures anyway.
Gavino is offline   Reply With Quote
Old 5th September 2009, 14:16   #22  |  Link
Smirky
Registered User
 
Join Date: Oct 2006
Posts: 12
I used 24fps and 5779 frames. It came out 4:00sec. But the damn audio just won't mux. Some other weird thing: I adjusted CBR in Xvid to 1100kbps and the project size while encoding showed 16MB. After it was done the video was 2.3MB with 87kbps bitrate.

Update: I've found a nice script for that:
Code:
# SCRIPT VARIABLES #
audiosource="audio.mp3"
videosource="video.png"
framerate=1
thumbduration=6

# SET AUDIO/VIDEO #
audio1 = directshowsource(audiosource)
duration1 = audio1.Audiolength / audio1.Audiorate
video1 = ImageSource(videosource, end=duration1, fps=framerate).ConvertToRGB32

# ADD MINI THUMBNAIL #
duration2 = (duration1 - thumbduration) / 2
thumb1 = imagesource(videosource, end=thumbduration, fps=framerate).ConvertToRGB32.lanczos4Resize(19,14)
thumb2 = blankclip(thumb1, length=duration2, color=$000000)
thumb3 = blankclip(thumb1, length=duration2, color=$000000)
thumb4 = thumb2 + thumb1 + thumb3
video2=Layer(video1, thumb4)

# RETURN FINAL VIDEO #
return(video2)
But audio still doesn't mux, in Vdub too...

Last edited by Smirky; 5th September 2009 at 15:53.
Smirky is offline   Reply With Quote
Old 5th September 2009, 16:15   #23  |  Link
Guest
Guest
 
Join Date: Jan 2002
Posts: 21,901
What are you using to mux? What container are you muxing to? What is the error that you receive?
Guest is offline   Reply With Quote
Old 5th September 2009, 16:39   #24  |  Link
Smirky
Registered User
 
Join Date: Oct 2006
Posts: 12
Ok. I've found scripts made by Frifox out here and they work perfectly. Thx to neuron2 and Gavino for great help and I'm definitely going to get to the bottom of my errors soon and will post as I do.
Smirky is offline   Reply With Quote
Reply

Tags
image, source, static, video, youtube

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 22:36.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.