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) GB-PVR Support (legacy) v
« Previous 1 … 1016 1017 1018 1019 1020 … 1231 Next »
Help with ComSkip

 
  • 0 Vote(s) - 0 Average
Help with ComSkip
dmclone
Offline

Junior Member

Posts: 10
Threads: 2
Joined: Jun 2005
#1
2005-06-30, 12:43 AM (This post was last modified: 2005-06-30, 12:51 AM by dmclone.)
I can't get this to work. I see my mpeg file and I see 2 text documents. I open up GB and choose recordings and then I play the episode. At that point I can't skip past commercials or anything. I'm confused. I have a PVR-150 MCE.

Here are my two text files.
dmclone
Offline

Junior Member

Posts: 10
Threads: 2
Joined: Jun 2005
#2
2005-06-30, 12:51 AM
My second attachment was too big. Here is what it says at the end


---------------------
Initial Commercial List
---------------------
0) 1532 2432 30.03 seconds
1) 20852 23012 1 minute, 12.07 seconds
2) 23936 24831 29.86 seconds
3) 30614 36173 3 minutes, 5.49 seconds
4) 48051 49428 45.95 seconds
5) 50332 56277 3 minutes, 18.37 seconds
6) 58135 59295 38.71 seconds


---------------------
Final Commercial List
---------------------
2 - start: 20852 end: 23012 length: 1 minute, 12.07 seconds
4 - start: 30614 end: 36173 length: 3 minutes, 5.49 seconds
5 - start: 48051 end: 49428 length: 45.95 seconds
6 - start: 50332 end: 56277 length: 3 minutes, 18.37 seconds

59296 Frames Processed
################################################################
Time at end of run:
Wed Jun 29 18:40:56 2005
################################################################

The second run ended with an error code of 1
Successfully deleted batchfile - G:\Program Files\GB PVR\comskip.bat
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,823
Threads: 769
Joined: Nov 2003
#3
2005-06-30, 12:54 AM
When you play this recording do you see some slightly darker patches in the show timeline graphic? These are the commercials.

Pressing the play button when you're in one of these patches will jump to the end of the commercial.
dmclone
Offline

Junior Member

Posts: 10
Threads: 2
Joined: Jun 2005
#4
2005-06-30, 01:02 AM
I can't even get the timeline to come up. I do a ctrl-B. Is that correct?

My shortcuts seem to work fine on live tv but when I'm playing a video I get nothing.
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,823
Threads: 769
Joined: Nov 2003
#5
2005-06-30, 01:06 AM
Try explicitly setting the video decoder on the playback tab of the config app, instead of relying on the system default setting. If you're using the Cyberlink decoder, switch to Overlay instead of VMR.
dmclone
Offline

Junior Member

Posts: 10
Threads: 2
Joined: Jun 2005
#6
2005-06-30, 02:03 AM
Wow you know your stuff. I made that change and I now have all the shortcuts enabled except skip commercial. Should I assume this will work on future recordings?
dmclone
Offline

Junior Member

Posts: 10
Threads: 2
Joined: Jun 2005
#7
2005-06-30, 10:35 PM
OK-Everything is working now on the comskip side. How do I go about getting comclean to work? Here are some files. I don't know if they wil help or not.
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,823
Threads: 769
Joined: Nov 2003
#8
2005-06-30, 11:49 PM
Sorry, I dont know anything about comclean
reboot
Offline

Posting Freak

Posts: 1,426
Threads: 89
Joined: Mar 2005
#9
2005-07-01, 01:58 AM
You have your postprocessing.bat set up correctly.
Download and install comclean, and it should simply process the file, once comskip has finished.
It will remove all ads identified by comskip, in the recordingname.txt file, in your recording's folder.
You can never have enough tuners!
Pentium Quad / 4Gb Dual Channel RAM / XPSP3 / 2 x PVR-500, PVR-250 / GB-PVR
dmclone
Offline

Junior Member

Posts: 10
Threads: 2
Joined: Jun 2005
#10
2005-07-01, 02:04 AM
I've already downloaded comclean but it doesn't seem to be working. Here is the info in my comclean.bat file.

@echo off
Rem comclean.bat Version 0.0.1
Rem Adapt to your framerate times 100 (PAL=2500/NTSC=2997)
set framerate=2500
Rem Adapt to where mpgtx.exe can be found
set mpgtx="G:\Program Files\GB PVR\mpgtx.exe"

rem Initialize the variables
set start=0
set duration=0

rem Set the command line start
set cmdline=%mpgtx% -j -f -o "%~dpn1_clean.mpg" "%~dpn1.mpg"
set cutpoints=

rem Process all the lines from the Comskip output file
for /F "usebackq tokens=1,2,3*" %%i in ("%~dpn1.txt") do call :processline %%i %%j
rem Output last clip
call :totime %start%
set cmdline=%cmdline% [%tim%-]
echo Resulting cutpoints: %cutpoints%
rem echo %cmdline% >"%~dpn1.bat"
rem echo exit >>"%~dpn1.bat"
rem start /wait /low call "%~dpn1.bat"
@echo on
%cmdline%
@echo off
echo Resulting cutpoints: %cutpoints%
Rem RENAME the old .mpg file and rename the new one to the old name
move "%~dpn1.mpg" "%~dpn1_original.mpg"
move "%~dpn1_clean.mpg" "%~dpn1.mpg"
exit
goto :eof

:processline
rem Skip useless lines
if "%1"=="FILE" goto :eof
if "%1"=="-------------------" goto :eof
rem Output the clip information for the show part
set /a length=%1-%start%
set /a duration=%duration%+%length%
call :totime %length%
set cutpoints=%cutpoints% %tim%

if "%1"=="0" goto :nostartshow
call :totime %start%
set cmdline=%cmdline% [%tim%
call :totime %1
set cmdline=%cmdline%-%tim%]
:nostartshow
rem Remember start of next clip
set start=%2
goto :eof

:totime
set tim=
if "%1"=="0" goto :eof
set /A position=%1 *100 / %framerate%
set /A hours=%position% / 60 /60
set /A hrest = %position% - %hours%*60*60
set /A minutes=%hrest% /60
set /A seconds = %hrest% - %minutes%*60
set tim=%hours%:%minutes%:%seconds%
goto eof
:eof
« Next Oldest | Next Newest »

Users browsing this thread: 2 Guest(s)

Pages (2): 1 2 Next »


Possibly Related Threads…
Thread Author Replies Views Last Post
  Comskip pcostanza 3 2,478 2010-06-02, 01:46 AM
Last Post: pBS
  Running comskip at a scheduled time? gonzo90017 4 2,258 2010-05-19, 06:09 AM
Last Post: pBS
  Anyone using comskip in New Zealand - TVNZ, TV3 etc ? wodger 3 1,922 2010-04-22, 11:07 PM
Last Post: Lindsay
  Help do not know how to configure comskip to work with records or live. HYBRiD.BLiNG 1 1,598 2010-04-16, 12:43 AM
Last Post: Graham
  comskip problem dspdrew 3 2,005 2010-04-13, 03:55 AM
Last Post: Daldana
  ATSC LiveTV and comskip on same server/client system? linene 2 1,636 2010-03-07, 09:31 PM
Last Post: linene
  Comskip ts NZ Lindsay 2 2,033 2010-02-27, 11:56 PM
Last Post: lyntonb
  New play pause toggle and comskip soccerdad 3 2,180 2010-02-03, 12:59 AM
Last Post: AOSandman
  Comskip Comclean HELP! Darko1912 2 1,900 2010-01-28, 03:10 AM
Last Post: Darko1912
  Comskip files remain after deleting recordings 1oddfellow 10 4,843 2010-01-19, 06:17 AM
Last Post: spotty

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

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

Linear Mode
Threaded Mode