VideoHelp Forum
+ Reply to Thread
Results 1 to 4 of 4
Thread
  1. As you might have read in some posts, in order to open .mp4 or .mkv files (or some other formats) in VirtualDub, you need some plugins and also in some cases you need to create a .avs file for each file you will need to open.

    That process is kinda boring and has to be done file by file.

    To make the process easier I have created a "program" (Something basic made in Java) that will make this files for us.

    Feel free to download and use it, and please leave feedback (First time making something like this)

    Here some Screenshots:

    Click image for larger version

Name:	CreateAVS.png
Views:	621
Size:	368.0 KB
ID:	29871

    Notes: It will create an .avs file for every .mp4 or .mkv or all files, depending on what you selected, with a content like this.

    DirectShowSource("<your selected folder>\<filename>.<extension>")

    Example:

    DirectShowSource("C:\Documents and Settings\Admin\Videos\Video.mp4")


    You can download it here (Available in .exe .jar and .rar with both formats)

    DOWNLOAD Links in a Pastebin - (adfly)

    Direct Links:
    CreateAVS.exe
    http://ul.to/pjg82mrn

    CreateAVS.jar
    http://ul.to/d5ukmqhz

    CreateAVS.rar (.exe and .jar)
    http://ul.to/s3u73zdp

    Hope you find it useful.
    Last edited by A2000; 24th Jan 2015 at 12:02.
    Quote Quote  
  2. I'm a MEGA Super Moderator Baldrick's Avatar
    Join Date
    Aug 2000
    Location
    Sweden
    Search Comp PM
    Why link to adfly? and then pastebin? and then you must wait 384993843498438 seconds to download.

    And I always recommend you try your .exe files at virustotal.com. Your file looks ok:
    https://www.virustotal.com/en/file/ce157b65321c699586675facb4e343128639a09b234e3cc144e...d48a/analysis/
    Last edited by Baldrick; 24th Jan 2015 at 03:33.
    Quote Quote  
  3. DirectShowSource() should be the option of last resort. It's behavior depends on what DirectShow components you have installed and it's not always frame accurate.

    Another method of creating a basic AVS script is to use a batch file:

    Code:
    echo ffVideoSource("%~d1%~p1%~n1%~x1") >> "%~d1%~p1%~n1.avs"
    You can drag/drop files onto that batch file to create a AVS script that uses ffVideoSource() to open it. Of course, you can replace ffVideoSource with AviSource, Mpeg2Source, DirectShowSource, etc. If you place that batch file in your SendTo folder you can right click on any file and select SendTo -> BatchFileName.bat to create an AVS script for that file.

    A batch file for use with MPG sources:

    Code:
    "C:\Program Files\DgIndex\DGIndex.exe" -i "%~d1%~p1%~n1%~x1" -o "%~d1%~p1%~n1" -fo 0 -om 2 -exit
    echo Mpeg2Source("%~d1%~p1%~n1.d2v", CPU2="ooooxx", Info=3) > "%~d1%~p1%~n1.avs"
    echo TFM() >> "%~d1%~p1%~n1.avs"
    echo TDecimate(mode=1) >> "%~d1%~p1%~n1.avs"
    That will run DGIndex to produce an index file then create an AVS script to open the index and apply some typical filters: TFM and TDecimate. You will need to change the path to DGIndex if you have it installed in a different location.

    I have several such batch files in my SendTo folder so I can right click on a source file, SendTo, and automatically build an apprpriate prototype AVS script.
    Quote Quote  
  4. Originally Posted by Baldrick View Post
    Why link to adfly? and then pastebin? and then you must wait 384993843498438 seconds to download.

    And I always recommend you try your .exe files at virustotal.com. Your file looks ok:
    https://www.virustotal.com/en/file/ce157b65321c699586675facb4e343128639a09b234e3cc144e...d48a/analysis/
    Thanks for the feedback, on the * you can download without Adfly, I will swap the links so the one without adfly is seen first
    Quote Quote  
Visit our sponsor! Try DVDFab and backup Blu-rays!