NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Information Community Announcements v
« Previous 1 … 45 46 47 48 49 … 56 Next »
Comskip 0.71 posted

 
  • 0 Vote(s) - 0 Average
Comskip 0.71 posted
erik
Offline

Posting Freak

Posts: 1,138
Threads: 123
Joined: Apr 2005
#1
2005-07-23, 06:01 AM
I have posted comskip 0.71
It can be found here

It contains a description of all tunable parameters and the cvs file format and it has some improvements in aspect ratio recognition.

Have fun!
P4 3GHz 1GB, 250GB, nVidia dualTV, GBPVR 1.3.11, XP
Support Comskip, visit the forum and donate at http://www.comskip.org/
jrockintuitive
Offline

Senior Member

Posts: 292
Threads: 19
Joined: Dec 2004
#2
2005-07-23, 05:06 PM
Do most people think .71 works better than .63? In most show, there is one commercial that comskip does not fully recognize - for me.

I have non-hdtv cable in the US.
erik
Offline

Posting Freak

Posts: 1,138
Threads: 123
Joined: Apr 2005
#3
2005-07-23, 05:55 PM
Does .71 not recognize a commercial?
If so, send me the log (verbose=10) and indicate the exact frame boundaries of the missed commercial.
P4 3GHz 1GB, 250GB, nVidia dualTV, GBPVR 1.3.11, XP
Support Comskip, visit the forum and donate at http://www.comskip.org/
reboot
Offline

Posting Freak

Posts: 1,426
Threads: 89
Joined: Mar 2005
#4
2005-07-23, 11:05 PM (This post was last modified: 2005-07-23, 11:13 PM by reboot.)
Thanks for the new version, but I have trouble understanding the new settings, and how they work. If the defaults don't work, should I make them higher, or lower, or which one's higher or lower, and why are the defaults in the ini different that in the .txt file you included?
These are the ones I mean:
Code:
score_percentile=0.00    ; 0.67
black_percentile=0.005    ;0.0073
logo_threshold=0.70        ;0.75 (0.05 added because of strict)
brightness_jump=200
non_uniformity=20
Should I change my logo_threshold from it's current working value of 83, to 70?
Brightness jump, up or down to detect better, and how can I tell?
non_uniformity=20, up or down? According to the log, uniformity runs from about 48 to 77 or so, is 20 a good number? why? Should it be higher?
What do these do:
Code:
score_percentile=0.00    ; 0.67
black_percentile=0.005    ;0.0073

What do the numbers mean, and again, up or down to improve detection, and is it in the log somewhere I should be looking for these numbers?

Sorry for all the questions, but new stuff without explanation is very confusing.
You can never have enough tuners!
Pentium Quad / 4Gb Dual Channel RAM / XPSP3 / 2 x PVR-500, PVR-250 / GB-PVR
erik
Offline

Posting Freak

Posts: 1,138
Threads: 123
Joined: Apr 2005
#5
2005-07-24, 03:23 AM
Please read the previous posts.
The new logo algorithm can recognize weaker logo.s without (many) false positives so you should lower the logo_threshold
YOu can put score_percentile to 0.0 if you always have a logo on shows and not on commercials
Look at the histogram for brightness to understand the black_percentile
non_uniformity is to generate cutpoints at uniform brightness frames (black, blue, white, whatever color), start at 200, if you et too many cut's with a 'u' (see block list in log) lower the value
Defaults shoule be ok.
P4 3GHz 1GB, 250GB, nVidia dualTV, GBPVR 1.3.11, XP
Support Comskip, visit the forum and donate at http://www.comskip.org/
kayleigh
Offline

Senior Member

Posts: 321
Threads: 18
Joined: Oct 2004
#6
2005-07-24, 08:01 AM
Is this a release from Jere? I'm more than happy with 6.3, and until I here from him, I'm going to hold on this release IMHO.
[SIZE=1]
HD PVR: nPVR 4.2.2 with VLC 3.0.3 Std Skin
ASRock H170M Pro4 LGA 1151 Intel H170 HDMI-out, Intel Core i3-6100 3.7GHz, 16GB DDR4 2400, Win7 Ultimate x64, Hauppauge Colossus, 1x250GB SSD (System), 1x1TB SATA (Recordings), DirecTV HD22 STB, dtvTune.exe Ethernet channel changer

Running Samsung Smart TV plugin from Fred250
reboot
Offline

Posting Freak

Posts: 1,426
Threads: 89
Joined: Mar 2005
#7
2005-07-25, 06:11 PM
I thought score_percentile was for percentage of recording that was show, or roughly 71%. If it's strictly for logo, then I CAN USE 0.00, because all the shows I record, only have a logo during show, and not commercial...except for the odd one, that has a disappearing logo about 5 seconds before a commercial. I could use 0.001 or something for this?

I figured out black_percentile, thanks Smile

I don't see the "u" in the log...which portion should I be looking at?
You can never have enough tuners!
Pentium Quad / 4Gb Dual Channel RAM / XPSP3 / 2 x PVR-500, PVR-250 / GB-PVR
Jere_Jones
Offline

Member

Posts: 118
Threads: 4
Joined: Oct 2004
#8
2005-07-29, 12:05 AM
mvandere Wrote:A couple of things, by my understanding of the way INI files work this

;detect_method=43
detect_method=255

Should be read as the 43 is a comment and 255 is the value. But after several confusing Hours I find that 43 is the value (i.e. the ; is ignored) and that the first of any value is accepted all later values are ignored.

Also in this case:-

;garbagedetect_method=43
detect_method=255

detect_method would be set to 43
Comskip uses very basic code for the ini file. It searches for the first "detect_method=" it can find and then extracts the number following the "=". That's just the way the code is designed.

It should work as you desire if you changed:
Code:
;detect_method=43
detect_method=255
to
Code:
;detect_method!=43
detect_method=255

Jere
DEATH TO ALL COMMERCIALS!!
http://www.dragonglobal.org/
Latest ShowAnalyzer Beta version: 0.7.5
Jere_Jones
Offline

Member

Posts: 118
Threads: 4
Joined: Oct 2004
#9
2005-07-29, 12:46 AM
tipstir Wrote:But it works still no matter how basic the code is
I didn't mean to come across as saying it is bad code. It does exactly what is should do. Or, as you say, "it works." It just isn't full fledged ini parsing code like would be needed to skip comments and such. That's all.

Didn't mean to come across as negative, only helpful.

Jere
DEATH TO ALL COMMERCIALS!!
http://www.dragonglobal.org/
Latest ShowAnalyzer Beta version: 0.7.5
erik
Offline

Posting Freak

Posts: 1,138
Threads: 123
Joined: Apr 2005
#10
2005-08-13, 12:18 PM
I am very happy that Jere and the others that have initially written comskip did use 'C' because that's the only language I can realy write software in.
I still have to get used to the 'void' keyword.
So you can gues my age now :o
P4 3GHz 1GB, 250GB, nVidia dualTV, GBPVR 1.3.11, XP
Support Comskip, visit the forum and donate at http://www.comskip.org/
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (2): 1 2 Next »


Possibly Related Threads…
Thread Author Replies Views Last Post
  Comskip 0.79 build 24: Improved logo recognition erik 10 6,820 2009-09-07, 11:10 PM
Last Post: gEd
  Starting to test Comskip with h.264 support erik 31 12,592 2009-03-01, 12:31 PM
Last Post: erik
  BurndvdX2 Version 1.0.1.8 posted to wiki pastro 1 1,470 2009-02-04, 03:50 AM
Last Post: pbb
  Comskip build 143 can crash on mono AC3, upgrade to build 144 erik 0 1,204 2008-08-17, 11:45 AM
Last Post: erik
  Comskip quality on HD worse then expected erik 2 1,754 2008-02-18, 10:59 PM
Last Post: erik
  SkipTool a GUI to enter comskip times pastro 7 2,741 2007-10-17, 04:16 AM
Last Post: pastro
  SkipTool a GUI to enter comskip times. New Version released pastro 7 3,742 2007-10-15, 03:18 PM
Last Post: pastro
  Weather Plug-in For PVRX2 Posted Jeff 59 15,044 2007-09-18, 02:40 AM
Last Post: davreh99
  Comskip build 92: Special for Australia erik 3 1,709 2007-04-17, 08:38 PM
Last Post: David
  Comskip 0.79 build 69 released erik 0 1,314 2007-01-14, 07:09 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