Jump to content

OCedHrt

Member
  • Posts

    41
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Everything posted by OCedHrt

  1. You make a valid point. However, I just tried a valid VCD compliant MPEG file (encoded it myself) and Nero still crashed. That means (S)VCD is nearly completely not working. The only thing that still works are pictures. Fixed. 3 Additional files are required. However, I think it would be better to include all the splitters. Source: Bin\Common Files\DSFilter\*Splitter.ax; DestDir: {cf}\Ahead\DSFilter; Flags: regserver sharedfile uninsnosharedfileprompt; Components: nero_core\nero_videocd However, swf files still cause a crash.
  2. Nero 6 did not require Recode to encode the input media files for (S)VCDs. I will try the new beta version, but I have a feeling it will be the same. I will also reinstall the bloated full package without Recode and see if it works. I am pretty sure it will though. Recode is needed to encode to DVD (for authoring).
  3. It is not necessarily the VCD burning doesn't work, but it seems something is missing either for the decoding or encoding of the media files. Putting pictures into the VCD is working.
  4. I may have found a problem. Anyone here try making a VCD with Nero Lite yet? Putting in ANY video file for me crashes Nero. - I have tried removing all my codecs (which is only ffdshow), still crash. - I have tried 7.7.5.1 micro, and that crashes too. Below is a snip of Process Monitor for the crash.
  5. Interesting, same problem with 1.0 Final. However, there is no problem with the attached settings. Maybe I'm just missing something obvious. BTW, the "huh:0?" popup appears at the end of processing setup files. Last_Session.ini
  6. I'm not doing anything fancy. Just Ryan's Updates, AddOns, and WMPUpdate. Also using some basic built in patches and tweaks. I get this popup this says Huh:0? It appears twice. I had no problems with 1.0 Final with a much more complicated procedure (removal, driver integration, all sorts of tweaks, etc) Gonna try it now with 1.0 Final. Last_Session.ini
  7. I think this is the same issue I have posted here: http://www.msfn.org/board/index.php?showtopic=78133 Actually, currently I'm using ULi's SATA drivers for textmode and setup and they are copied into NLDRV\001. What I did was have the "inside Windows drivers" integrated before the textmode drivers, that way they take precedence in TXTSETUP.SIF but still work for TEXTMODE.
  8. Hmm..I always wondered about that. So I put all the files other than the inf/cat files into cabs and list their contents in drvindex.inf. Then I just have nLite integrate the inf/cats? Since they would need to be copied to C:\Windows\inf
  9. The drivers with same filenames are in different folders, however the problem is not quite that simple. 2 files with the same name will only have one valid entry under TXTSETUP.SIF. For example, say I have two files: 001\conflict.dll 002\conflict.dll In TXTSETUP.SIF, there will be 2 dirid's, one for 001 and one for 002, so you will potentially end up with two entries like this: conflict.dll = 1983,,,,,,,1983,0,0 conflict.dll = 1984,,,,,,,1984,0,0 However, for all intents and purposes, this is just one entry, the first. Meaning, the second conflict.dll will never be copied during the text portion of setup. My solution is this: file0001.dll = 1983,,,,,,,1983,0,0,conflict.dll file0002.dll = 1984,,,,,,,1984,0,0,conflict.dll and have instead: 001\file0001.dll 002\file0002.dll
  10. I have 3 different graphics drivers that I integrate, of which each have a different copy of "oemdspif.dll". Now, 2 is doable, as you can have one be oemdspif.dll while the other be oemdspif.dl_ and they will be entered into TXTSETUP.SIF as 2 different entries. However, the starting from 3 files of the same name, there is a problem with 2 ways to resolve it: 1. Change the name and update the relevant inf's. (Breaks driver signing) 2. Change the name and then edit TXTSETUP.SIF after integration to rename back to original name. Is there a way to have nLite perform the 2nd solution automatically? Maybe instead of keeping the original names on the cd, driver files can be named 00000001, 00000002, etc. (or just the duplicate ones) and then renamed with TXTSETUP.SIF.
  11. [quote name='tommy_vercetti' post='429402' date='Dec 4 2005, 02:42 AM']Hi, Went to this thread and pulled out my old driver cd and installed the ATI decoder, it's pretty good compared to all the commercial bloated ones, Tried the one compiled by the other guy works but the decoder is installed, but just not functional. If Anyone can help me with the .msi, I can see all the coponents it installs but just cannot create a setup file for it, cos it still keeps asking to run from setup. I running Installshield Pro 11.5 Trialware, not many days left for the trial to expire, so if anyone can help me Thanks[/quote] Use the batch code I have in my previous post. Save that in a .bat file in the same directory as the msi/setup. You still need to use setup.exe (the one mentioned in my above post). Basically, actually do some reading and follow the instructions in my post
  12. Was trying to play some HDTV 1920x1080 content on my computer and found that it just plain doesn't work too well. So went around looking for MPEG2 decoders and remembered, doesn't ATI have something like that for my BBA ATI 9800 Pro!? I bit the bullet and opened up my cd/manual package that was still in shrinkwrap , popped that in, got the update utility from ATI's website, and proceeded to figure out how to install it without the CD. I'm going to post the link to the setup program that the update utility downloads because you still need the cd to run the setup program, so I think it's okay. Plus their link is so simple I don't think they really care about hiding it. Link to setup.exe : [url="http://www2.ati.com/drivers/setup.exe"]http://www2.ati.com/drivers/setup.exe[/url] As posted earlier, the setup program checks for the files \BIN\aticdfp.sys and \Install\DVDDcdr\DVDDcdr.dat. Simply copy these files and run setup with the right parameters, right? Well, aticdfp.sys is 108MB! Now comes the fun part: 1. Open up command prompt. 2. Change directory to the place where your copy of aticdfp.sys is. (NOT ON CD) 3. Run: fsutil sparse setflag aticdfp.sys. 4. Run: fsutil sparse setrange aticdfp.sys 4096 38067485. 5. Run: fsutil sparse setrange aticdfp.sys 38117149 76139699. Now it's only using 192kb! Use your favorite compression program (HINT HINT: NOT WINZIP) that supports sparse (bzip, rar?) or is atleast smart enough to notice it's 99.999999999% 0's (rar, 7zip). Note: You could probably put tighter boundaries on the sparse ranges but sparse segments comes in 64kb blocks, so it doesn't really matter. Also, a note about the long paths, I have spaces in mine, but I use quotes and it works. I wrote a simple batch file like the following: [code]cmdow @ /HID @ECHO OFF SET CWD=%CD% setup.exe /z-w"%CWD%"[/code] I'm not sure if you can call a batch file from 7z's sfx script, if someone tries/knows LMK. A little update: With the ATI DVD Decoder (Cyberlink with Hardware Acceleration), I can play the 1920x1080 HDTV content only using 40-50% cpu, vs 10fps at 100% cpu with ffdshow or 15fps with dscaler!
  13. Is it possible to extend to timeout period? I tried using the shrinker with a source over LAN and it says already complete due to timeout because the installer hasn't loaded yet in 5 seconds!
  14. Yes it has worked, it worked fine for me And it still works fine for me Did you ad the plugin for Firefox? The only streams that don't work are the ones w/ the <EMBED SRC> tag. Which can be remedied by forcing an install with the original wmp10 inf and then unintalling it.
  15. eben- you can try the stuff I mentioned 2 posts above yours. Not sure if the inf will install on 2k though, and modifying it for 2k will make it fail.
  16. Has all streaming problems been fixed yet? If not I found out how to restore it . It may defeat the point of WMPLite but I haven't tested it thoroughly, the last step may be unnecessary. unregmp2 /PreInstall unregmp2 /RegUniv unregmp2 /RegExts rundll32.exe advpack.dll,LaunchINFSection wmp10.inf unregmp2 is in the WMP10 installer, but it doesn't come with WMPLite. If anyone wants to try to see which of these steps can be removed... Will test it more when I format my laptop again. Update: Seems like the last step is required, but you can then invoke the DefaultUninstall of wmp10.inf and streaming still works.
  17. I believe since START is a dos command and not actually a program, you'll have to write a cmd or bat file with that command and shortcut that for startup. Not sure if I would want anything other than the OS in high priority. I hate how a crashed program can drag down the whole system cause it has equal priority with the rest of the system.
  18. I meant that I got it to work under IE But for the non working sites, they don't work under Firefox and IE.
  19. A short update for windows media streaming in either IE or Firefox: Non-working sites: www.big-boys.com video.msn.com (says wmp10 not installed) yahoo videos (also says wmp10 not installed) Working sites: mtv
  20. www.big-boys.com is one. I think it is all streaming content though, not 100% sure since WMP10 is now already installed. I will reformat my laptop again in (with next week?) and come back with more specifics. It seems like WMP10 Lite is slightly different than Stream & Codecs 2? (the file is a little bigger) so I will give that a try.
  21. I'm still unable to play streaming media :/ Using the newest nLite and removing WMP and not checking maintain compatibilty, I still can't get streaming to work after installing stream & codecs 2. In FF, I get the black WMP box but somewhere in the right click menu (details?) it says cannot find suitable codec or something. It's been a while since I last tried (totally forgot about it til I noticed my saved bookmark ) In IE I think I get the control bar but no screen. The weird part is, when installing WMP10 over this setup, it doesn't say WMP10 or newer is already installed. It just installs and then of course everything works.
  22. I have been following it and the package seems to work great on the site mentioned here However, I can't seem to get it to work for http://www.big-boys.com/ on this computer. It does work on another computer though. I'm not too sure if I kept media player compatibility with nLite in this installation, would that be the reason why?
  23. I just had an interesting idea...wouldn't it work if you went through and changed the destionation directories to a predefined output directory and just processed the inf as if you were installing the driver. Of course this would only work on the system with the hardware but you would get the required files for installation for your specific configuration.
  24. English versions. I used dxmasf.dll from my XP SP2 cd since it wasn't in the WMP10 installer. I got the other file from my system32.
  25. The \BLAH shuold work fine Try it yourself in a command prompt. It's why CD \ goes to root.
×
×
  • Create New...