NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Add-ons (3rd party plugins, utilities and skins) Old Stuff (Legacy) v
« Previous 1 … 6 7 8 9 10 … 125 Next »
How to use VideoReDo to AUTOMATICALLY remove commercials

 
  • 0 Vote(s) - 0 Average
How to use VideoReDo to AUTOMATICALLY remove commercials
reboot
Offline

Posting Freak

Posts: 1,426
Threads: 89
Joined: Mar 2005
#1
2005-08-30, 07:28 PM (This post was last modified: 2005-08-30, 07:32 PM by reboot.)
This is very short, and it works!
VideoReDo is known for it's ability to use fades on cuts, and maintain audio sync, something that mpgtx (with comclean) didn't always do.
So for those of you that have VideoReDo, but want gbpvr to automatically cut the commercials, using either a comskip generated .vprj (videoredo cutlist) or a ShowAnalyzer generated .vprj, here's how.

1) Get VideoReDo if you don't have it already. 15 day trial is free, but the program is ~$50. It works so well, I'm seriously tempted to actually buy it Wink
http://www.videoredo.com

2) Set up comskip or SA to output the videoredo project file (.vprj)
In comskip.ini, add the line: output_videoredo=1
In SA, open config, Global, Output tab, and put a tick in the "Output VideoReDo Project file.
If you don't have comskip, look here: http://forums.nextpvr.com/showthread.php...ht=comskip
If you don't have ShowAnalyzer, look here: http://www.dragonglobal.com

3) Modify your postprocessing.bat so it looks like this:
Code:
REM If you use Showanalyzer, unREM the next line
REM "C:\Program Files\Dragon Global\ShowAnalyzer\ShowAnalyzer.exe" %1
REM If you use comskip, unREM the next line
REM "C:\Program Files\devnz\gbpvr\comskip.exe" %1
cscript //nologo "C:\Program Files\VideoReDoPlus\vp.vbs" "%~dpn1.VPrj" "%~dpn1_Cleaned.mpg" /t1 /q
Rem RENAME the old .mpg file and rename the new one to the old name
move "%~dpn1.mpg" "%~dpn1_original.mpg"
move "%~dpn1_cleaned.mpg" "%~dpn1.mpg"
RenameRecordings %1 > renamerecordings.log
Note that I'm also using renamerecordings, which works perfectly.
Delete the last line if you're not using it.
Remove the REM from the appropriate line above. The second, if you're using SA, the fourth, if you're using comskip.

If you are using PVRPowertray, and PreProcessing.bat, then just run SA from there, and leave this file as is.

Copy and paste the content above, into notepad, and save it as "PostProcessing.bat" (including the quotes) in the c:\program files\devnz\gbpvr folder

Credits:
Based on an original concept found in the VideoReDo forums.
Modified to use GBPVR's filename conventions by rpalmer68 in the DragonGlobal forums.
The actual postprocessing.bat is mine. Big Grin
Comskip by Erik
Showanalyzer by Jere_Jones
You can never have enough tuners!
Pentium Quad / 4Gb Dual Channel RAM / XPSP3 / 2 x PVR-500, PVR-250 / GB-PVR
jorm
Offline

Posting Freak

Posts: 2,014
Threads: 109
Joined: Aug 2004
#2
2005-08-30, 07:40 PM
That looks very promising.

I am always concerned with automatically cutting the commercials without getting a chance to check everything. Videoredo is an excellent tool and one that I actually purchased. Smile
WinXP Home
3 X MVPs
Hauppauge 250 MCE
Hauppauge 150
P-4 2.4 GHz / 768 megs Ram
610 Gigs Of Media Storage
reboot
Offline

Posting Freak

Posts: 1,426
Threads: 89
Joined: Mar 2005
#3
2005-08-30, 08:02 PM
In this case, the original file is kept as well, so if the cuts are made wrong, you can still edit the original. Nothing lost.
You can never have enough tuners!
Pentium Quad / 4Gb Dual Channel RAM / XPSP3 / 2 x PVR-500, PVR-250 / GB-PVR
bobrap
Offline

Member

Posts: 103
Threads: 19
Joined: Aug 2005
#4
2005-08-31, 06:10 PM
Guess I must not be holding my mouth right. I cannot get this to work. The postprocessing.bat never runs VideoReDo. This is my batch file:

REM If you use Showanalyzer, unREM the next line
"C:\Program Files\Dragon Global\ShowAnalyzer\ShowAnalyzer.exe" %1
REM If you use comskip, unREM the next line
REM "C:\Program Files\devnz\gbpvr\comskip.exe" %1
cscript //nologo "C:\Program Files\VideoReDoPlus\vp.vbs" "%~dpn1.VPrj" "%~dpn1_Cleaned.mpg" /t1 /q
Rem RENAME the old .mpg file and rename the new one to the old name
move "%~dpn1.mpg" "%~dpn1_original.mpg"
move "%~dpn1_cleaned.mpg" "%~dpn1.mpg"
RenameRecordings %1 > renamerecordings.log

What is the dpn1 in the file name? This is how my shows are saved:

World Series of Darts_20050829_19002000.mpg

Any help is appreciated.
reboot
Offline

Posting Freak

Posts: 1,426
Threads: 89
Joined: Mar 2005
#5
2005-08-31, 06:31 PM
Did you go into SA and have it output the proper .vprj ?
If SA doesn't output the file, then VideoReDo has nothing to work with.
Does SA run properly?
The %dpn1 is where it get's the filename from gbpvr for rename recordings to work.
You can never have enough tuners!
Pentium Quad / 4Gb Dual Channel RAM / XPSP3 / 2 x PVR-500, PVR-250 / GB-PVR
SickBoy
Offline

Senior Member

Posts: 340
Threads: 53
Joined: May 2005
#6
2005-11-11, 04:45 AM
OK, so do I need to use both Comskip and SHowAnalyzer? that setting in Comskip doesn't output the Vprj file.... so obviously this fails because it's not finding that file....
SickBoy
Offline

Senior Member

Posts: 340
Threads: 53
Joined: May 2005
#7
2005-11-11, 05:38 AM
I had to modify postprocessing.bat to get it to work correctly. Here's what I have:

Code:
REM If you use Showanalyzer, unREM the next line
REM "C:\Program Files\Dragon Global\ShowAnalyzer\ShowAnalyzer.exe" %1
REM If you use comskip, unREM the next line
"C:\Program Files\devnz\gbpvr\comskip.exe" --videoredo --ini="C:\Program Files\devnz\gbpvr\comskip.ini" %1
cscript //nologo "C:\Program Files\VideoReDoPlus\vp.vbs" "%~dpn1.VPrj" "%~dpn1_Cleaned.mpg" /t1 /q
Rem RENAME the old .mpg file and rename the new one to the old name
move "%~dpn1.mpg" "%~dpn1_original.mpg"
move "%~dpn1_cleaned.mpg" "%~dpn1.mpg"
REM RenameRecordings %1 > renamerecordings.log

What directory does this file need to reside in?
jorm
Offline

Posting Freak

Posts: 2,014
Threads: 109
Joined: Aug 2004
#8
2005-11-11, 02:27 PM
root gbpvr folder
WinXP Home
3 X MVPs
Hauppauge 250 MCE
Hauppauge 150
P-4 2.4 GHz / 768 megs Ram
610 Gigs Of Media Storage
reboot
Offline

Posting Freak

Posts: 1,426
Threads: 89
Joined: Mar 2005
#9
2006-01-20, 08:00 PM
Seems I mad a blatantly bad error when posting this originally.
You need a small .vbs file in your videoredo folder for this to work.

Here it is, and my sincere apologies to everyone that tried this and had problems.
Download the .vbs file.Right click, save target.
You can never have enough tuners!
Pentium Quad / 4Gb Dual Channel RAM / XPSP3 / 2 x PVR-500, PVR-250 / GB-PVR
csy
Offline

Senior Member

Posts: 502
Threads: 51
Joined: Jul 2005
#10
2006-01-22, 10:33 PM
Thanks reboot, this works extreamly well, and I had not problems getting it to work via your instructions.

I downloaded VideoReDo 2.2 which has the vp.vbs file already installed and works correctly. But for those who wish to download the file via reboots link, I noticed the IE6 wants to save the file as vp.mpg for some strange reason even though it is truly vp.vbs, so make sure you save it with the correct file extension.
« Next Oldest | Next Newest »

Users browsing this thread: 2 Guest(s)

Pages (7): 1 2 3 4 5 … 7 Next »
Jump to page 


Possibly Related Threads…
Thread Author Replies Views Last Post
  How do I get SHowanalyzer to run automatically from the postprocessing linfor 2 1,553 2007-12-21, 08:05 PM
Last Post: linfor
  Semi-Automatic commercial removal with VideoRedo dgeezer 9 6,391 2007-12-21, 03:19 PM
Last Post: dgeezer
  Existing mpeg files with commercials bimmer16 7 2,419 2007-11-07, 08:51 AM
Last Post: zehd
  Blue Skin - completely remove preview screen Taajuus 2 1,648 2007-05-21, 10:48 AM
Last Post: Taajuus
  xrecord shows all channels in guide, can't remove channels from list Wakalaka 1 1,268 2007-03-01, 01:38 AM
Last Post: Wakalaka
  XRecord, Reoccuring, and crash when remove a schedule Wakalaka 3 1,698 2007-02-28, 01:04 AM
Last Post: fla
  comclean deleting file after it removes commercials. ram4x4nut 12 4,173 2006-10-06, 04:00 AM
Last Post: zehd
  Comskip won't run automatically. decon1313 21 5,627 2006-08-29, 02:45 AM
Last Post: decon1313
  I-xmltv: TV GuideSupercharger & Zap2It EPG remove channels swfx 6 2,467 2006-08-24, 08:03 PM
Last Post: Jim_
  comskip doesnt find commercials fldavem 1 1,465 2006-06-26, 09:22 PM
Last Post: erik

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode