2005-09-22, 02:52 AM
you need to add AVS in the main setting page of VA, then it works
2005-09-22, 02:52 AM
you need to add AVS in the main setting page of VA, then it works
2005-09-22, 03:49 PM
LilY0da Wrote:you need to add AVS in the main setting page of VA, then it works OMG -- I can't believe I forgot to do that! :o Awesome! It works like a charm now!
GBPVR v1.0.16 | Comskip | SportsScores | Weather | I-XmlTV
Server: Tyan Thunder h1000E | 2 x Opteron 2210 | 2GB PC2-5300 DDR2 ECC LSI MegaRAID 300-8X SATA RAID 1x 73GB SCSI @ 10K RPM (OS) 3x 500GB SATA @ 7.2K RPM (RAID 5) (4 Partitions: Docs, Still Pics, Home Movies, Music) 2x 160GB IDE @ 7.2K RPM (RAID 0) (Recordings) Hauppauge HVR-1600 Client: Gigabyte GA-MA69GM-S2H | Athlon x2 5000+ BE | 2GB PC-6400 DDR2 1x 320GB SATA @ 7.2K RPM Antec NSX2480 Case MCE Remote
2005-10-27, 03:17 PM
I uninstalled ffdshow, installed xvid codec & avisynth & created a simple avs file to test. My source was 29.97FPS & 640x480 which I converted to 25FPS and resized to 352x288 in the script.
For the first time I was able to watch a complete xvid encoded show on my mvp with no crashes and a decent enough picture. I can use the following code from the command prompt to auto create .avs files for avi's in a directory but I don't know how to make this recurse through sub-directories. for %x in (*.avi) do ( echo.aviSource^("%x"^) echo.BilinearResize^(352,288^) echo.convertfps(25^) ) > "%~nx.avs" I have hundreds of avi files stored in dozens of sub-directories. Does anyone know of an easy way to batch create .avs files?
2005-10-27, 03:48 PM
Google for a small utility called "ScriptWriter", I think it has recursive capabilities.
2005-11-03, 12:35 PM
I can recall that we'v discussed playing avs files in another thread before. Now this is really possible, it seems to work like a charm indeed. It works so well that I would even recommend to always play AVI files through Avisynth. Sub, perhaps you can add a little avs generator to the transmvp script that is invoked when you click on an avi on the mvp.
The reason why it works awesome for me is because it takes care of the out-of-sync audio, which was caused by the framerate (the framerate of the avi must correspond with the framerate of the MVP box, e.g. PAL = 25). At the same time it also takes care of the issue that I had that my PC was just fast enough to transcode quite some AVI, but not all. I solved this by scaling the movie resolution down to VCD format, which gives the MPEG encoder a much easier job. Another issue that I tackled with this is the borders around the movie. In some occasions the movie was always in the top of the screen. By getting some borders in the movie, so that it already has a PAL (in my case) aspect ration, the movie is now always nicely displayed in the middle of the screen. In fact, the AVS solutions worked so well for me, that I'm playing my movies from a shadow directory that's built up with a PHP script. In that directory, there are symlinks to the MPGs and it contains AVS-files to link to the AVIs. Oh, just a tip for this to work: I have the feeling that the MPEG encoder that GBPVR is using only accepts resolutions with even numbers. So if you create AVS files, make sure that the resolution isn't 101 x 51, but 100 x 50 instead (just an example). Great work Sub, and it's really a wonderful effort that GBPVR supports this now. I'm sure it will solve a lot of folks' frustration converting their entire movie collection
2005-11-03, 12:55 PM
I use the code below, in a batch file, for all of my transcoding. It works flawlessly
Code: > "%~dpn1.avs" ECHO AVISource(%1)
2005-11-03, 01:13 PM
I have something similar.
It's just that I'm using directshowsource to open the file, because I have some files with AC3 and I'm using a bicubicresize, which is dependent on the resolution on the movie. I'm actually generating my AVS files with a PHP script and read the movie properties (resolution and framerate) with the open source library getid3. Apart from that, I'm including my own borders (instead of letting the MVP figuring the borders out) to make the movie fit the 3:4 TV screen and display the subtitle in the bottom border using vobsub. Great solutions, and it displays everything at my side also exactly the way I want
2005-11-03, 01:41 PM
* LilY0da wants the php code
please please please
2005-11-03, 11:45 PM
LilY0da Wrote:/me wants the php codeO dear... First a couple of disclaimers then:
A little explanation:
Code: <?php The subtitle version is still work-in-progress, but it's quite simple: Just check for a .str file and then add two lines to your AVS: Code: LoadPlugin("C:\path-to-vsfilter\VSFilter.dll") The TextSub goes below the AddBorders, so that the subtitles are displayed in the bottom-border.
2005-11-04, 03:48 AM
/hug
Besides the IP and the paths, looks like I can use it almost as is. /re-hug, with complimentary /bow PS: you code less dirty than I do |
|