I've been using AVISYNTH to render out video clips through the command line using FFMPEG.
(about 13 seconds a piece)
But when exporting, the render sequence is cut short around 50 percent and the video is made.
Oddly enough even though its missing frames..I can still play the video. *scratches head*
The error occurs when trying to use one of synths resize functions.
Is FFMPEGs use of that frame server broken, or am I witting this command wrong?
ffmpeg -i test.avs -f mpeg -bt 3000k compiled.mpg
Or if someone has experience with avisynth, maybe my script is off.
(will display if asked)
Thank you.
(wasn't sure where to post)
+ Reply to Thread
Results 1 to 11 of 11
-
-
avs script:
mFst = ImageSource("***\For forum\0.jpg",0,450,29.97).fadein(90)
mFst = animate(mFst,0,450,"crop",0,350,576,384, 0,0,576,384)
mFst = BicubicResize(mFst,720,480,0,0.75)
mLst = ImageSource("***\For forum\1.jpg",0,450,29.97).fadeout(90)
mLst = animate(mLst,0,450,"crop",0,0,576,384, 0,405,576,384)
mLst = BicubicResize(mLst,720,480,0,0.75)
mFst = dissolve(mFst,mLst,90)
mLst = 0
mFst = ConvertToYV12(mFst,interlaced=true)
return mFst
and my current ffmpeg build is 7760
from - http://arrozcru.no-ip.org/ffmpeg_builds/ -
You can compare the rendered number of frames over the total
(number of frame rendered*100)/total number of frames
-
You do realize that Dissolve is effectively removing 90 frames, right?
"Shut up Wesley!" -- Captain Jean-Luc Picard
Buy My Books -
Originally Posted by gadgetguy
They are overlapped, which does shrink the video.
The issue is, I'm missing frames at the end..
IE: the video starts to fade into black but stops before reaching #000000
Quenc seems to solve the problem, but would rather have a command line app without a gui for flv/mpeg2 rendering. -
Exactly how many frames are you missing?
QuEnc can be run from command line. Most of the time I use it within bat files. I almost never use the gui.
Edit: Try fadeout2() and see if it takes you all the way to full black."Shut up Wesley!" -- Captain Jean-Luc Picard
Buy My Books -
HA! Got it working!
The programming interface I am using is Adobe Director.
And as such there is an extension to run command line applications.
This xtra is the issue. (after perusing the returned dll values)
So have switch to running a bat file..and everything seems to be in order.
Similar Threads
-
AVANTI - FFmpeg/Avisynth GUI (support thread).
By Chris K in forum Video ConversionReplies: 1189Last Post: 12th Jun 2017, 12:39 -
VDub & AviSynth: Errors with ffmpeg and VBR audio streams
By klischee in forum Software PlayingReplies: 8Last Post: 20th Aug 2011, 19:13 -
Mkv 2 Divx 6.0 with hardcoded subs through Avisynth and FFMpeg
By a6point6 in forum Video ConversionReplies: 3Last Post: 31st May 2010, 06:40 -
Transcoding audio -> ffmpeg - besweet - avisynth?
By wiseant in forum AudioReplies: 4Last Post: 18th Dec 2009, 22:14 -
New Avisynth Plugin for Ffmpeg Compatible sources
By Soopafresh in forum Video ConversionReplies: 2Last Post: 25th Jun 2007, 18:49