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. |
![]() |
#1 | Link |
Registered User
Join Date: Oct 2001
Posts: 169
|
Detect AVS Script Number of frames
I'm looking for a way to figure out how many frames an AVS contains, then output that to a file. I can't seem to get the avisynth script commands correct. Has anyone done this before that might be able to steer me in the right direction?
|
![]() |
![]() |
![]() |
#2 | Link |
Registered User
Join Date: Mar 2004
Posts: 243
|
This script can help
LoadPlugin("C:\DvdTools\DgDecode145\DGDecode.dll") MPEG2Source("D:\ProgramasDelphi\EclBatch\Hostage.d2v",idct=3) Logfile="D:\ProgramasDelphi\EclBatch\test.log" WriteFile(Logfile, """ "Width : " """, "Width()") WriteFile(Logfile, """ "Height : " """, "Height()") WriteFile(Logfile, """ "FrameCount : " """, "Framecount()") WriteFile(Logfile, """ "FrameRate : " """, "Framerate()") WriteFile(Logfile, """ "FramerateNumerator : " """, "FramerateNumerator()") WriteFile(Logfile, """ "FramerateDenominator : " """, "FramerateDenominator()") WriteFile(Logfile, """ "Audiorate : " """, "Audiorate()") WriteFile(Logfile, """ "Audiolength : " """, "Audiolength()") WriteFile(Logfile, """ "AudiolengthF : " """, "AudiolengthF()") WriteFile(Logfile, """ "Audiochannels : " """, "Audiochannels()") WriteFile(Logfile, """ "Audiobits : " """, "Audiobits()") WriteFile(Logfile, """ "IsAudioFloat : " """, "IsAudioFloat()") WriteFile(Logfile, """ "IsAudioInt : " """, "IsAudioInt()") WriteFile(Logfile, """ "IsRGB : " """, "IsRGB()") WriteFile(Logfile, """ "IsRGB24 : " """, "IsRGB24()") WriteFile(Logfile, """ "IsRGB32 : " """, "IsRGB32()") WriteFile(Logfile, """ "IsYUY2 : " """, "IsYUY2()") WriteFile(Logfile, """ "IsYV12 : " """, "IsYV12()") WriteFile(Logfile, """ "IsYUV : " """, "IsYUV()") WriteFile(Logfile, """ "IsPlanar : " """, "IsPlanar()") WriteFile(Logfile, """ "IsInterleaved : " """, "IsInterleaved()") WriteFile(Logfile, """ "IsFieldBased : " """, "IsFieldBased()") WriteFile(Logfile, """ "IsFrameBased : " """, "IsFrameBased()") WriteFile(Logfile, """ "GetParity : " """, "GetParity()") Trim(0,-1) After some frames you can stop it |
![]() |
![]() |
![]() |
#4 | Link |
French Love
Join Date: Oct 2008
Location: France
Posts: 456
|
Hello all,
Or... Code:
Src = ".\Video.mp4" Logfile = ".\Log.txt" V = DirectShowSource(Src) V = V.WriteFile(Logfile,"Framecount") V = V.WriteFile(Logfile,"Framerate") V = V.WriteFile(Logfile,"AudioRate") V = V.WriteFile(Logfile,"AudioChannels") V = V.WriteFile(Logfile,"AudioLength") V = V.WriteFile(Logfile,"Width") V = V.WriteFile(Logfile,"Height") V = V.WriteFile(Logfile,"PixelType") Last = V Trim(0,-1)
__________________
2013-11-29 MVC Player Free v0.0.2.6 BD & 3D BD's Player, Demuxer v0.0.0.8b, Recoder. Tutorial Demo for MVC Player Free: Trailer 3D 3DBD's Free - v0.0.0.0005.exe Old Programing free for all. |
![]() |
![]() |
![]() |
#5 | Link |
Join Date: Mar 2006
Location: Barcelona
Posts: 5,034
|
AVSMeter yourscript.avs -i -l
__________________
Groucho's Avisynth Stuff |
![]() |
![]() |
![]() |
#6 | Link |
HeartlessS Usurer
Join Date: Dec 2009
Location: Over the rainbow
Posts: 10,880
|
Somehow I dont think ChrisBensch will be saying thankyou.
So, "Thankyou", for him and for everybody else too ![]()
__________________
I sometimes post sober. StainlessS@MediaFire ::: AND/OR ::: StainlessS@SendSpace "Some infinities are bigger than other infinities", but how many of them are infinitely bigger ??? Last edited by StainlessS; 14th December 2020 at 20:30. |
![]() |
![]() |
![]() |
#8 | Link |
Registered User
Join Date: Jun 2002
Location: On thin ice
Posts: 6,809
|
Groucho2004 wins this battle.
Side note: Don't seem to be possible with ffmpeg.
__________________
https://github.com/stax76/software-list https://www.youtube.com/@stax76/playlists |
![]() |
![]() |
![]() |
#9 | Link |
Join Date: Mar 2006
Location: Barcelona
Posts: 5,034
|
I didn't realise that this thread was re-animated from a mummyfied state.
__________________
Groucho's Avisynth Stuff Last edited by Groucho2004; 15th December 2020 at 15:32. |
![]() |
![]() |
![]() |
Thread Tools | Search this Thread |
Display Modes | |
|
|