Home
Blogs
Forums
Files


Welcome to The Green Button          Sign in | Join | Help

DVRMSToolbox

File Details
Downloads: 21025 File Size: 29.3kB
Posted By: Chris - Moderator Views: 113627
Date Added: Wed, May 03 2006
DVRMSToolbox is a set of tools to perform actions on DVR-MS files. Create scheduled tasks that process your recorded TV while you sleep, or if you are a more visual person a there is also a GUI that will run the applications. A set of "Profiles", or configured set of actions, is included in the installation package. These include convert DVR-MS to MPEG, DVR-MS to MPEG w/o commercials, DVR-MS to WMA, and DVR-MS to WMV, cut commercials out of a DVR-MS file and output DVR-MS and out of DVR-MS, output DVR-MS and DVR-MS with commercials. The "Profiles" are flexible, you can change the actions in the included profiles, or create your own using the DVRMSToolboxSettings application

By: babgVant
Comments
 

cobreloa9 said:

This doesn't seem user friendly.
Mon, May 22 2006 12:05 AM
 

jimmysb said:

I guess I didn't do something correctly. It made my media center go black because it brings the configure screen up every time I start media center. Somehow it halt media center from starting until the configure screen is closed. Then it says the service is already running. I have dcut installed which I guess uses the same service....
Tue, May 23 2006 5:14 PM
 

jimmysb said:

I tried to install this and I cannot uninstall this program... Caution do not install this program you might never be able to uninstall it again
Tue, May 23 2006 6:49 PM
 

Fabz said:

This is great software! (not very user friendly, but what the heck) Anyone knows about good settings for showanalyzer and swedish channels (TV4, TV6)?
Sun, May 28 2006 3:45 AM
 

jarvusmcgee said:

Great program in theory, not QAed much though. It installed listener services without (my) expectation, attempted reinstall itself on start unsuccessfully, then wouldn't uninstall easily. It was a royale pain in the butt to uninstall this thing manually. The few times it worked, the commercial skip add-in seemed to cut out chunks of the show randomly, but never within an actual commercial block! I couldn't figure out how to tune it either.
Thu, Jun 15 2006 8:05 PM
 

ChiJoker said:

works fine for me here this helped me out http://www.litwack.org/?page_id=1114
Thu, Jun 29 2006 6:51 PM
 

Airock said:

Works great! I withing 10 minutes of downloading DVRMSToolbox, it was converting DVR files to MPeg. I had a bit of a problem with audio/video sync, but that appears to be sparatic when rendering with Studio 8.
Tue, Jul 11 2006 11:17 PM
 

Airock said:

"Do Run" error! Any ideas? It used to work great!
Mon, Jul 17 2006 3:31 PM
 

watkinsabob said:

Any suggestions on software to use to burn a commercial-less tv show that was edited with DVRMSToolbox? Most software I've used never complete the burn process. I even convert to other formats and still does not work.
Wed, Aug 30 2006 7:25 AM
 

Breadsacker said:

Downloaded but won't launch and after reading thecomments I think I will just unistall it and wait til the gliches are worked out.
Tue, Sep 12 2006 8:50 AM
 

CKaelin said:

I've got this to work but am having Audio sync problems. Seems fine at the start of hte .mmpg but goes out of syn shortly into it. Any advice appreciated. Thanks!
Fri, Oct 06 2006 7:48 AM
 

ecf said:

I read an article on this in PC Magazine It stated that you can set a time where it will automatically remove commercials etc.. I cant quite figure out where I can set a time where it will automatically work on a directory etc... thx
Sat, Oct 07 2006 2:12 PM
 

Zeuserx said:

Too complicaadto nstall, too complicated to use.Bad standards in GUI. And itdoesn't even work. Keeps crashing on exception faults.
Mon, Oct 09 2006 9:07 PM
 

gaervern said:

Program hangs up after converting to WMV, and does not migrate meta-data or index. This means that it is not possible to fast forward or rewind or skip when playing the converted file. Hope someone can fix the bug. Or else a great program.
Thu, Oct 19 2006 11:56 PM
 

covert said:

I'm no slouch on a com,but i'm no guru either.Think I'll wait for a more user friendly app.
Sun, Oct 22 2006 6:50 PM
 

Pez said:

I found the UI a little hard to use so I wrote this vbs script and schedule it to run everynight: ''''READ THIS!!!: '''' ''''THIS SCRIPT IS PROVIDED ON AN "AS IS" BASIS. THE PERSON USING THE SCRIPT BEARS ''''ALL RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE. '''' ''''You need to change "D:\Recorded TV" to suit your own computer, your MCE default ''''is probably "C:\Documents and Settings\All Users\Documents\Recorded TV" '''' ''''You can change the lines similar to "InStr(file.name,"_KSPS_") = 0 And _" to ''''suit your own needs (see code below) '''' ''''Put this code in notepad and save it with a .vbs extention. You can schedule it ''''to run every night while you sleep if you like with Windows Scheduled Tasks. '''' ''''Be careful about running this for the first time on a folder with lots of dvr-ms ''''files, you will get that many instances of this script running at the same time. '''' ''''PEZ 'strip commercials from recorded TV files: Dim System Dim Folder Dim File Dim Cutter Dim InFile Dim OutFile Set System = CreateObject("Scripting.FileSystemObject") Set Folder = System.GetFolder("D:\Recorded TV") For Each File In Folder.Files 'skip tv programs such as public tv since they don't have commercials 'anyway or skip stations that don't cut out well, or they were already 'done (contains "NC_"), or you just skip thru the show anyway, etc: If InStr(file.name,".dvr-ms") > 0 And _ InStr(file.name,"_KSPS_") = 0 And _ InStr(file.name,"_KCDT_") = 0 And _ InStr(file.name,"_KSKN_") = 0 And _ InStr(file.name,"NC_") = 0 And _ InStr(file.name,"Nightly News") = 0 And _ InStr(file.name,"Jay Leno") = 0 Then Dim objShell Set objShell=CreateObject("WScript.Shell") Cutter = """C:\Program Files\DVRMSToolbox\DVRMStoMPEG.exe""" 'to work with DVRMSToolBox, file name must have quotes: InFile = """" & Folder & "\" & file.name & """" OutFile = """" & Folder & "\" & file.name & """" oFLeft = left(OutFile,instr(OutFile,"_")) oFRight = right(OutFile,len(OutFile)-instr(OutFile,"_")) OutFile = oFLeft & "NC_" & oFRight 'get OutFile without quotes to use with FileExists: length = len(OutFile) OutFileNQ = right(OutFile,length-1) length = len(OutFileNQ) OutFileNQ = left(OutFileNQ,length-1) 'get InFile without quotes to use with FileExists: length = len(InFile) InFileNQ = right(InFile,length-1) length = len(InFileNQ) InFileNQ = left(InFileNQ,length-1) 'if an infile and an outfile still exists from last run, delete the infile: '(this will delete the original version the next time this script runs) If System.FileExists(OutFileNQ) And System.FileExists(InFileNQ) Then System.DeleteFile(InFileNQ) End If 'if OutFile doesn't already exists for this show, then run the commercial stripper: If Not System.FileExists(OutFileNQ) Then objShell.Run cutter & " /if=" & InFile & " /of=" & OutFile & " /act=dvrmscutoutcommercials" End If End If Next
Sat, Oct 28 2006 9:11 AM
 

Pez said:

Hmm, well I guess the carraige returns didn't pick up, lotsa luck with that
Sat, Oct 28 2006 9:13 AM
 

lagunamiata said:

Had the same problem as watkinsabob. Converted a 1hr program, removed commercials and the burn slowed to a crawl at 35% then just stopped.
Sun, Dec 17 2006 10:17 AM
 

Boob Tube said:

Worked once or twice - sort of. Then never-ending problems - some of them nightmarish, like repeated system lock-up. Really a Hellishly unfinished program. And hard or impossible to uninstall ... Somebody be honest and just call this thing what it is: a low-level Beta program that NEEDS WORK.
Sun, Jan 14 2007 12:18 AM
 

Neg13 said:

I'm glad I read these comments before I downloaded and installed! I think I'll pass until I hear more favorable comments from the "guinea pigs"!
Sun, Jan 28 2007 12:35 PM
 

ewelin said:

I think this is a great app with great support. I've had this app running on my Media Center for several months. Sure it doesn't have the slickest GUI but it's extremely powerful and gets the job done. And the support the author provides on his website definitely makes it worth it.
Sun, Jan 28 2007 6:46 PM
 

TK73760 said:

What is error 2869. i get it right when the installation looks like its finished. I'm installing the Windows Vista version.
Tue, Feb 06 2007 8:18 PM
 

AFrost20 said:

This isnt the correct version for Vista, is it?
Wed, Feb 07 2007 7:52 AM
 

RobKamp said:

Where is the Vista versio?
Sun, Feb 11 2007 3:31 AM
 

Paqratt said:

I'm getting the "Do run" error as well. It works on the file for fifteen minutes, then completes and reports a "do run" error that it can't find some component, named only by a CLSID string. Disappointing.
Thu, Apr 19 2007 7:26 AM
 

talkinggoat said:

even the vista version is full of bugs. deleted it.
Sat, Jul 14 2007 10:51 PM
 

woodmite said:

yep am not even going to try it been there and have the ripped and blood stained t shirt to prove it
Mon, Sep 17 2007 9:38 PM
 

Doctor Who said:

Just a quick question - am I correct in assuming that if I don't start/load the DVRMSFileWatcher, the program will just convert / manage files when I want to use the GUI. I don't want it running and converting unless I really need something from DVR-MS to MPG? Thanks....
Sat, Dec 15 2007 10:58 PM
 

Martian Man said:

No problems here! Running Win XP MCE 2005.
Wed, Dec 19 2007 7:31 PM
 

Martian Man said:

Actually, there are some minor issues. The software really isn't very user friendly at all.
Wed, Dec 19 2007 7:32 PM
 

MitchSchaft said:

I hope you guys are downloading these programs from the author's site. These files are way outdated. "user friendly" is relative, btw :P.
Fri, Dec 21 2007 12:20 PM
 

icevoyager said:

I can't get this to convert. I used it on XP fine. Vista's version doesn't seem to work. Please help!
Sun, Jan 20 2008 7:24 PM
 

GrvCat said:

This program really screwed up my media center...now the tv tuner doesn't work anymore!!! thanks whoever made this crappy program. Any suggestions on how to fix this would be greatly appriciated.
Tue, Jul 01 2008 6:04 PM
 

kdunbar36 said:

I have Media Center Vista Ultimate, I wish we had this program for Vista users, I don't know why Microsoft couldn't just allow us to record without the commercials, especially when most of the time, if not all of the time, we watch tv with the commercials, we shouldn't have record them onto our hard drives too..which takes up more space.. there should be a choice, we should be able to choose record with commercials or record without commercials onto the hard drive. So we could really use a Vista Version for Vista users... Thanks.. Kimberley
Thu, Aug 14 2008 4:04 PM
 

baius said:

I don't think "Microsoft" have the authority to do what you propose, kdunbar36. For one, advertising is what keeps television companies in business. There would be a royal out-cry (and they'd possilby stop providing services) if Microsoft gave people such an easy option of removing the Network's revenue streams. They'd be taken to court, for loss of earnings. What we do as individual users, installing end-products, is different. (Hence the program in question.)
Mon, Aug 18 2008 2:13 PM
About TGB | Advertise | Link To Us | Donate | Terms Of Use | Privacy Policy
© 2003-2007 The Green Button, Inc. - All Rights Reserved