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 … 18 19 20 21 22 … 125 Next »
comcut and comskip help

 
  • 0 Vote(s) - 0 Average
comcut and comskip help
resnostyle
Offline

Junior Member

Posts: 38
Threads: 6
Joined: Feb 2007
#1
2007-09-21, 09:17 PM
ok,

So I dont know what the problem is.

Currently, I have all the files installed in the GBPVR directory. If I look at the folder I see all the logo files and cutting info. I believe the machine is attempting to cut because I get an 'original' and a newer one.

The problem is both files are the same. I also am using the postprocessing.bat. So maybe I have done something wrong but I just clean installed and followed the instructions but I know there is something I am missing.. :mad: :mad:
Thanks Resnostyle

=========

Avermedia M150-D
Intel Celeron 1.8 ghz
512mb ram
VIDEO CARD: PNY TNT-2
Intel® Desktop Board D845EBG2
SOUND CARD: CREATIVE CT4670
GB-PVR... old version :p
resnostyle
Offline

Junior Member

Posts: 38
Threads: 6
Joined: Feb 2007
#2
2007-09-24, 02:34 AM
does no one know how to fix it?
Thanks Resnostyle

=========

Avermedia M150-D
Intel Celeron 1.8 ghz
512mb ram
VIDEO CARD: PNY TNT-2
Intel® Desktop Board D845EBG2
SOUND CARD: CREATIVE CT4670
GB-PVR... old version :p
nightwalker
Offline

Senior Member

Posts: 733
Threads: 54
Joined: May 2005
#3
2007-09-24, 02:41 AM
I don't know for sure if this will help you but this is what i do in my post processing bat file. It may help you to find your problem. I send the results to a log file in case i need to review it later but none of them are necessary for operation.

@echo off

echo Comskip running on %1 recorded from channel %2 >>channel.log

Rem list of channels to not run comskip on
if "%2" == "5" goto eof:
if "%2" == "71" goto eof:
if "%2" == "12" goto eof:
if "%2" == "19" goto eof:

goto generic:

:generic
Rem The actual run of Comskip. Only one parameter, the name of the mpeg file to process.
Rem Comskip will read its settings from the Comskip.ini found in the same directory as Comskip.exe
Rem Both are supposed to be in the GBPVR default program directory. (D:\Program Files\devnz\gbpvr\)

echo Starting comskip... >>review.log
time /t >>review.log
comskip %1 >>review.log 2>>&1

Rem if "%2" == "3" call comclean %1
Rem if "%2" == "6" call comclean %1
Rem if "%2" == "3" move "%~dpn1_original.mpg" E:\holding
Rem if "%2" == "3" del "%~dpn1.log"
Rem if "%2" == "3" del "%~dpn1.txt"
Rem if "%2" == "6" move "%~dpn1_original.mpg" E:\holding
Rem if "%2" == "6" del "%~dpn1.log"
Rem if "%2" == "6" del "%~dpn1.txt"
:continue
Rem
Rem Once the commercials have been identified you can run comclean to delete the commercials from the recording.
Rem Do this only when you are not using the Skip function in the GBPVR viewer.

echo Starting comclean... >>review.log
time /t >>review.log
call comclean %1 >>review.log 2>>&1

echo Starting retime... >>review.log
time /t >>review.log
call retime %1 >>review.log 2>>&1

echo Retime complete. >>review.log
time /t >>review.log

del "%~dpn1_original.mpg"
del "%~dpn1.log"
del "%~dpn1.txt"

:eof
echo Post Processing complete. >>review.log
time /t >>review.log
kayak4ever
Offline

Senior Member

Posts: 357
Threads: 27
Joined: Sep 2006
#4
2007-09-24, 02:48 AM
I had tried comskip a long time ago and it didn't seem to work. I just tried again just recently and as I understand it with comskip (but not comclean), the file remains as is, but the txt file that goes with it will tell GBPVR when to skip through the commercials. The first time playing a "comskip file", I had to press play during the first commercial to "turn it on". After that, it skips commercials nicely unless I press rewind, in which case, I need to re-press play to start it again. The file is still whole which is why I need to use comclean if I want a separate file that can play outside of GBPVR without commercials. I have tried this but haven't had time to burn a DVD to test out the results.

I also checked auto skip commercials in the misc tab of the config panel.

I hope this helps
PVRx2 v1.4.7|Hauppauge 150 with 45 button remote & HVR1600|Cyberlink for DVD and BDA multiplexer|
evga nvidia gforce 6200: Pentium®4 cpu 2.4 GHz 3 Gb ram|Windows XP: 1 MVP
resnostyle
Offline

Junior Member

Posts: 38
Threads: 6
Joined: Feb 2007
#5
2007-09-24, 04:59 PM
thanks guys... ill give it a try when i get a chance
Thanks Resnostyle

=========

Avermedia M150-D
Intel Celeron 1.8 ghz
512mb ram
VIDEO CARD: PNY TNT-2
Intel® Desktop Board D845EBG2
SOUND CARD: CREATIVE CT4670
GB-PVR... old version :p
JavaWiz
Offline

Posting Freak

Jacksonville, FL. USA
Posts: 2,522
Threads: 141
Joined: Dec 2006
#6
2007-09-24, 05:23 PM
What version of comclean are you using? Do you have the correct supporting file installed and can the batch file locate it?


The comskip program scans the video file and detects commercials. It creates 'cut' files in a number of formats (ie .txt, .ctf, .idl - controlled via ini file).

comclean(2,3,4) are batch files used to remove commercials from video files. It uses utility programs to perform the actual cutting as noted below. I switched to comclean2 with cutterman since I was having problems with comclean with the video and voice getting out of sync.
  1. Comclean uses mpgtx to do the cutting. Mpgtx cuts on GOP level and creates a broken timeline. Some MPEG players will freeze or stutter. Cutting is very fast. You MUST set the correct framerate in the comclean.bat!!!! Otherwise the cutting will be done in the wrong places.

  2. Comclean2 uses Cuttermaran. Cutting is done on GOP boundaries but the timeline is correct.

  3. Comclean3 uses Mencoder. Cutting is done on I frames and the timeline is correct.

  4. Comclean4 uses Mpeg2Schnitt. Cutting is done on I frames and the timeline is correct
http://www.kaashoek.com/comskip/
Cahill84
Offline

Member

Posts: 158
Threads: 9
Joined: Feb 2007
#7
2007-10-13, 08:30 PM
I have never used retime, b/c I never had problems with ffmpeg transcoding to avi format. Recently ffmpeg has been creating unusable avi's, so I thought I would use retime to fix the timeline- thinking that might fix the problem. Ironically it only does the first section. Ie.... after the commercials are removed it will only go to where the first commercial used to be and stop there. Any thoughts?
ASUS A8V Deluxe MB | AMD Athlon 64 3200+
1 Gb Ram | 320 GB & 500 GB SATA II HDs
Sapphire X 1650 Pro | Hauppauge HVR-1600
Windows XP Pro running pvr-x2 1.1.5
idkpmiller
Offline

Posting Freak

Posts: 817
Threads: 141
Joined: May 2006
#8
2007-11-22, 10:55 AM
Has anyone else come across cuttermaran throwing up a Net exception error when being run through postprocessing.bat?
It works fine if I dont habe PVRx2 running and manually run postprocessing.bat but crashes if PVRx2 calls the batch file.

Any ideas?
Let the Games begin...Round 2!
GameZone v2.9.6 - PVRx2 1.4.7 compatible!

[Image: 1299379.png]
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)



Possibly Related Threads…
Thread Author Replies Views Last Post
  Transcode w/ Comskip? pduncan67 1 2,164 2009-11-25, 03:59 AM
Last Post: johnsonx42
  Comskip & Digital? nightwalker 8 3,613 2009-08-29, 06:34 PM
Last Post: nightwalker
  comskip wont run anymore HELP :) DoPeFiSh 1 1,991 2009-07-21, 07:34 PM
Last Post: DoPeFiSh
  Comskip build 0.80.011 Released erik 13 6,355 2009-03-01, 11:36 AM
Last Post: erik
  comskip problem j210277 11 6,230 2009-01-28, 05:25 AM
Last Post: stustunz
  Comskip: Interpreting the aspects file zehd 0 1,601 2008-11-29, 07:41 AM
Last Post: zehd
  Comskip.exe Question spector9 17 9,544 2008-10-28, 03:02 AM
Last Post: reboot
  Comskip quit working DoPeFiSh 5 2,817 2008-10-06, 04:09 PM
Last Post: DoPeFiSh
  problem with comskip GUI wannabepvr 3 2,936 2008-06-08, 06:53 AM
Last Post: erik
  A few Comskip questions. gh_speedyg 1 1,964 2008-05-20, 05:49 AM
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