VideoHelp Forum




+ Reply to Thread
Results 1 to 20 of 20
  1. Member
    Join Date
    Nov 2012
    Location
    Central Coast Australia
    Search Comp PM
    I am using Winmdows 7-64 and Sony Vegas Pro 10 with the latest DeBugMode Frameserver. I followed the instructions in this thread:
    Thread: [Guide] Using DMFS on Windows7 64bit (with Sony Vegas Pro 10 64bit)




    I have followed the instructions in loading the DBFS in the correct folder. I then try to "Save As" my clip and Debug it as is recommended but I get a strange file called "AVI Chunk Viewer".

    I try to load this *.avi file into MEGUI but it crashes each time. I think I am doing something simple. Please help.
    Quote Quote  
  2. I'm a MEGA Super Moderator Baldrick's Avatar
    Join Date
    Aug 2000
    Location
    Sweden
    Search Comp PM
    Can you play the .avi with wmp?
    Quote Quote  
  3. Member
    Join Date
    Nov 2012
    Location
    Central Coast Australia
    Search Comp PM
    No I tried to play the AVI with Windows Media Player and it does not work.

    When I press "Save as" in Sony Vegas Pro 10, the DebugMode Frameserver pops up and creates an Signpost AVI file but in the background Sony Vegas Pro is rendering my clip. If I cancel the rendering, I cannot save the Signpost AVI.
    When the Signpost AVI appears so does the "AVI Chunk Viewer" with a coloured grid and graphs.
    Quote Quote  
  4. Member
    Join Date
    Nov 2012
    Location
    Central Coast Australia
    Search Comp PM
    I tried installing Sony Vegas Pro 10 - 32 with DebugMode Frameserver and once again got the "AVI Chink Viewer".
    I managed to get the Signpost file to run under WMV but the AVI Chunk Viewer stays open.
    When I import the Signpost File into MEGUI it reports an error.
    Any suggestions?
    Quote Quote  
  5. Member
    Join Date
    Nov 2012
    Location
    Central Coast Australia
    Search Comp PM
    I have managed to get the AVI-Signpost to play with WMP but rendering window opens and wants to Render for hours. If I close it, the AVI-Signpost disappears as well.
    Quote Quote  
  6. Member racer-x's Avatar
    Join Date
    Mar 2003
    Location
    3rd Rock from the Sun
    Search Comp PM
    I don't think (it's been awhile) that MeGUI will import the signpost.avi directly. You'll need to use AviSynth script as a mediator. You can however import the signpost.avi directly into Virtualdub if you want..........
    Got my retirement plans all set. Looks like I only have to work another 5 years after I die........
    Quote Quote  
  7. Member
    Join Date
    Nov 2012
    Location
    Central Coast Australia
    Search Comp PM
    Thank you racer-x for your reply. I will tell you the steps I take:

    1) I import the clip into Sony Vegas and "render as" DebugMode Frameserver
    2) Sony Vegas continues to render but the AVI-Signpost appears on my desktop.
    3) I minimize DBMFS and Sony Vegas while it renders in the background.
    4) I open MEGUI and open Tools>AVSScript Creator> Import the AVI-Signpost
    5) The Vision appears and I proceed to process using AutoEncode at the botom right of the window.
    6) I Double-Click on the MP4-processed result and ....no video but audio.


    in other words I use the AVS Script to import into MEGUI but the end result is no vision.
    Quote Quote  
  8. What does the avs script say? copy & paste it here

    What do you mean by "The vision appears" in step 5 ? Do you mean you can see the preview in megui ?
    Quote Quote  
  9. Member
    Join Date
    Nov 2012
    Location
    Central Coast Australia
    Search Comp PM
    Yes, I can see the preview.
    Here is the .AVS:

    AVISource("C:\Users\Iain\Desktop\Untitled.avi", audio=false).AssumeFPS(25,1)
    #deinterlace
    #crop
    #resize
    #denoise
    ConvertToYV12()


    PS I have never been able to import AVS files into MEGUI or AVSPMod without them crashing. Is there a simple explantory Guide/Video?
    Quote Quote  
  10. post the megui log file - did it actually encode video? were there errors reported?

    can you try another player eg vlc , mpchc, smplayer ?

    PS I have never been able to import AVS files into MEGUI or AVSPMod without them crashing. Is there a simple explantory Guide/Video?
    not sure what you mean? how can you see the preview if it crashes ? when does it crash ?
    Quote Quote  
  11. Member
    Join Date
    Nov 2012
    Location
    Central Coast Australia
    Search Comp PM
    Thanks for taking the trouble to reply. I will try your suggestions shortly and get back soon.
    Quote Quote  
  12. Avisynth script, coming from Vegas' debugmode frame server:
    Code:
    AviSource("D:\server.avi")
    ConvertToYV12()
    if you have this video for PC or YouTube:
    Code:
    AviSource("D:\server.avi")
      ConvertToYV12(matrix="PC.709")
    if your source is interlaced, not progressive:
    Code:
    AviSource("D:\server.avi")
    ConvertToYV12(interlaced=true)
    if it is interlaced and for PC or Youtube:
    Code:
    AviSource("D:\server.avi")
    ConvertToYV12(interlaced=true, matrix="PC.709")
    Or you might try ripbot264, it will load signpost.avi directly (makes avisynth script behind your back), settings for encoder are almost the same like megui.
    Quote Quote  
  13. Member
    Join Date
    Nov 2012
    Location
    Central Coast Australia
    Search Comp PM
    Thanks for your help - much appreciated. How do you insert a graphic into this - cut-and-paste makes it too small.

    I have the log file from MEGUI.
    Also, what I mean by "it crashes" does not refer to MEGUI. I mean when I am using AVSPMod and I want to use MCTemporalDenoise, I simply do not understand the protocol for inserting it into the script.

    ie It comes in a rather long AVS file with a lot of instructions but when I try to run it, AVSPMod crashes. I have never even really tried inserting MCTD into MEGUI
    Thanks
    Quote Quote  
  14. You don't need to insert a graphic, just copy & paste the text, or upload the log

    For MCTD , you just type it,change whatever settings you want, preview in avspmod, save it

    e.g.

    Code:
    AVISource("video.avi")
    MCTemporalDenoise(settings="medium")
    If a 1 line script doesn't crash (just AVISOURCE), you need to debug line by line and figure out whats causing the crash, also post any error messages .

    MCTD requires has many prerequisites , but somebody compiled a single installer (see the sendspace link)

    http://avisynth.org/mediawiki/MCTemporalDenoise
    Quote Quote  
  15. Member
    Join Date
    Nov 2012
    Location
    Central Coast Australia
    Search Comp PM
    X AviSynth script error:
    ConvertToYV12: invalid "matrix" parameter (RGB data only)
    (D:\VIDEO FOLDER\VideoClip.avs, line 11)

    Quote Quote  
  16. Originally Posted by Sartorius48 View Post
    X AviSynth script error:
    ConvertToYV12: invalid "matrix" parameter (RGB data only)
    (D:\VIDEO FOLDER\VideoClip.avs, line 11)


    in vegas, when you start the debugmode frameserver , there is an option settings: format, set it to RGB instead of YUY2 . RGB24 or RGB32 is fine (RGB32 is for alpha channel, but you probably aren't using it)

    Look at screenshot in step 5 in the guide
    https://forum.videohelp.com/threads/332602-%5BGuide%5D-Using-DMFS-on-Windows7-64bit-%28...ro-10-64bit%29
    Quote Quote  
  17. Member
    Join Date
    Nov 2012
    Location
    Central Coast Australia
    Search Comp PM
    Click image for larger version

Name:	Capture.JPG
Views:	1148
Size:	71.0 KB
ID:	14972


    This is in JPG format - I hope you can read it if you enlarge it.

    I tried RipBot64 - I unpacked it using 7-zip and clicked RipBot64.exe but an error told me I have:

    MedianInfo.dll missing from the Tools folder.

    I would like to get control of all these problems but I suspect I am going to revert to vReveal.
    Quote Quote  
  18. Pleast upload the entire log file ,not a partial screenshot . You haven't included any useful information in the screenshot . There should be a plain text file in the log folder
    Quote Quote  
  19. Member
    Join Date
    Nov 2012
    Location
    Central Coast Australia
    Search Comp PM
    Thanks for your advice so far:

    These are the steps I am following:
    1) 1) Import my video clip into Sony Vegas Pro 10.
    2) 2) File>Properties>Template>Video Template>Audio Template> OK
    3) 3) File>Render As DebugMode FrameServer (*.avi)>Save
    4) 4) FrameServer opens up: RGB24 > Next
    5) 5) AVI-Signpost appears on my desktop.
    6) 6) I minimize FrameServer and Sony Vegas Pro (which continues to render the test clip in the background)
    7) 7) I open MEGUI > Tools>AVS Script Creator.
    8) 8) Import AVI-Signpost via “Video Input>AVISource.
    9) 9) Immediately I get a screen called “AVI Chunk Viewer” which I close several times as it pops up twice.
    10 10) AVISynth Creator opens and I set the following
    1111)Then I get a script error
    1 12)There are no Text files in the log to be seen.
    13 13)The untitled AVS file is below.
    1 14)This sequence of events happens repeatedly,
    15 15) I hope this makes it clearer.




    u









    Image Attached Thumbnails Click image for larger version

Name:	Video Template 1.JPG
Views:	680
Size:	67.6 KB
ID:	14985  

    Click image for larger version

Name:	Audio Template 1.JPG
Views:	574
Size:	45.3 KB
ID:	14986  

    Click image for larger version

Name:	AVISynth Creator a.JPG
Views:	815
Size:	52.9 KB
ID:	14988  

    Click image for larger version

Name:	AVI Chunk Viewer.JPG
Views:	753
Size:	84.6 KB
ID:	14989  

    Click image for larger version

Name:	LOG.JPG
Views:	593
Size:	80.1 KB
ID:	14991  

    Click image for larger version

Name:	AVS File.JPG
Views:	631
Size:	48.0 KB
ID:	14992  

    Image Attached Images    
    Quote Quote  
  20. 6) Vegas does not render in the background, it just waits for any application to load and read that signpost.avi, then Vegas proceeds to serve frames from its timeline ti that application through that signpost.avi. Signpost.avi is just a small file, lessthan megabyte or so. If you check "write audio as PCM" then audio gets written at ones into that signpost.avi, so it gets a bit bigger. Not sure if it is necessary to set audio (your #2) if you check that "write audio as PCM" . This is always a good idea to render, if there is more tracks then one or application might not read audio then (like ripbot264)

    9) Get rid of that "Avi chunk viewer" from your system. This is causing you problems. Google that and there is some solutions.

    11) megui generates that script? you chose some tfm ? This is not home video? If this is some movie or TV show, not sure how apropriate it is to use tfm filter, remember your untitled.avi (aignpost.avi) has properties of Vegas project. Debug mode frame server serves Properties settings not clip properties from the timeline. So there might be a problem.
    That error tells you that video needs to be YUV. You have to move your script line that converts from RGB above that line with TFM.
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!