NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Developers v
« Previous 1 50 51 52 53 54 … 93 Next »
ComskipHelper utility

 
  • 0 Vote(s) - 0 Average
ComskipHelper utility
HamsterGirl35
Offline

Member

Posts: 83
Threads: 11
Joined: Jun 2005
#31
2005-06-15, 08:27 PM
ZaDDaz,

Do you know why from time to time Comskiphelper wouldn't work and the log is telling me:
======================
Comskip seemed to stop processing...
======================

Because of that, my next command in Postprocessing.bat: renamerecordings.exe fails because the .mpg file seems to be locked somewhere....

any idea?

Thanks
reboot
Offline

Posting Freak

Posts: 1,426
Threads: 89
Joined: Mar 2005
#32
2005-06-16, 06:25 AM
You only need comskiphelper if you have previous recordings, that comskip wasn't run on. Even then, you can manually run comskip on them, as explained in the "comclean" thread.
Comskiphelper won't work with rename recordings (I've tried many methods!!!).
IIRC, renamerecordings MUST be in c:\programfiles\devnz\gbpvr folder, and will not work in any other drive/folder. I believe this may have changed, but I'm not sure.
You can never have enough tuners!
Pentium Quad / 4Gb Dual Channel RAM / XPSP3 / 2 x PVR-500, PVR-250 / GB-PVR
ZaDDaZ
Offline

Member

Posts: 96
Threads: 6
Joined: Mar 2005
#33
2005-06-16, 02:51 PM
ComskipHelper and RenameRecordings will work together. I wrote both and use both together all the time. I do recommend putting RenameRecordings before ComskipHelper in your PostProcessing.bat file.

Using ComskipHelper instead of comskip by itself should be just fine. Right now, it monitors the comskip process checking if it is using CPU cycles. If, for some reason, comskip doesn't use any CPU for a minute, ComskipHelper decides that comskip is stuck and tries to kill it. I don't see this happen often, but it does and I didn't want it to just get completely stuck. There may be a timing issue with the attempt to kill comskip and the process finishing and RenameRecordings executing immediately. Put ComskipHelper at the end of your PostProcessing.bat file and you should be fine.

RenameRecordings and ComskipHelper should both be put in the root GBPVR folder as they use GBPVR components and CommonGBPVRUtilities as well.

I've added configuration file to ComskipHelper to disable the monitoring of comskip or alter the timing of the monitoring. I'm not ready to release this yet, but should be soon.
HamsterGirl35
Offline

Member

Posts: 83
Threads: 11
Joined: Jun 2005
#34
2005-06-16, 05:01 PM
I will try renamerecordings before comskiphelper.
(comskip version 0.66)

Here's my postprocessing.bat for now:
renamerecordings.exe %1 > renamerecordings.log
Comskiphelper.exe %1 > comskiphelper.log
call comclean.bat %1 > comclean.log
rectracker.exe %1 > rectracker.log

I'll let you know what it looks like....

ZaDDaZ Wrote:ComskipHelper and RenameRecordings will work together. I wrote both and use both together all the time. I do recommend putting RenameRecordings before ComskipHelper in your PostProcessing.bat file.

Using ComskipHelper instead of comskip by itself should be just fine. Right now, it monitors the comskip process checking if it is using CPU cycles. If, for some reason, comskip doesn't use any CPU for a minute, ComskipHelper decides that comskip is stuck and tries to kill it. I don't see this happen often, but it does and I didn't want it to just get completely stuck. There may be a timing issue with the attempt to kill comskip and the process finishing and RenameRecordings executing immediately. Put ComskipHelper at the end of your PostProcessing.bat file and you should be fine.

RenameRecordings and ComskipHelper should both be put in the root GBPVR folder as they use GBPVR components and CommonGBPVRUtilities as well.

I've added configuration file to ComskipHelper to disable the monitoring of comskip or alter the timing of the monitoring. I'm not ready to release this yet, but should be soon.
HamsterGirl35
Offline

Member

Posts: 83
Threads: 11
Joined: Jun 2005
#35
2005-06-16, 06:53 PM (This post was last modified: 2005-06-16, 06:57 PM by HamsterGirl35.)
I have above postprocessing.bat running....but I don't think postprocessing finished the jobs for comskip or comclean......

I ended up with 4 files only.
filename.VPrj
filename.txt
filename.mpg
filename.log

I don't see any of the _clean.mpg OR _original.mpg files?

comclean.log seems to be looking for the original filename from database instead of the renamed one?!

I will use comskip instead of comskiphelper for next episode and see what happens.

If it still doesn't do the job, then, I will put renamerecordings.exe after comclean & comskip

****another topic, is it normal to see both comskip.bat & comskip.exe in gbpvr directory?
HamsterGirl35
Offline

Member

Posts: 83
Threads: 11
Joined: Jun 2005
#36
2005-06-16, 08:26 PM
Either I am on drugs or I am insane......

This time, there's only 1 file with .mpg (renamed already)

comskip 0.66 didn't work this time when I have renamerecordings.exe first.....

I am doing another test where I put in the regular order:

comskip %1 > comskip.log
REM Comskiphelper.exe %1 > comskiphelper.log
call comclean.bat %1 > comclean.log
RenameRecordings.exe %1 > renamerecordings.log
Rectrackter.exe %1 > rectracker.log

and see if it works.....
reboot
Offline

Posting Freak

Posts: 1,426
Threads: 89
Joined: Mar 2005
#37
2005-06-16, 09:25 PM
Yes, you MUST have comclean before renamerecordings.
You can never have enough tuners!
Pentium Quad / 4Gb Dual Channel RAM / XPSP3 / 2 x PVR-500, PVR-250 / GB-PVR
HamsterGirl35
Offline

Member

Posts: 83
Threads: 11
Joined: Jun 2005
#38
2005-06-16, 10:08 PM
Hmm....Then, why did ZaDDaZ (post #41)

say the following?

I changed the order because he said it will work.....
(.... my misunderstanding???....)

ZaDDaZ Wrote:ComskipHelper and RenameRecordings will work together. I wrote both and use both together all the time. I do recommend putting RenameRecordings before ComskipHelper in your PostProcessing.bat file.

reboot Wrote:Yes, you MUST have comclean before renamerecordings.
reboot
Offline

Posting Freak

Posts: 1,426
Threads: 89
Joined: Mar 2005
#39
2005-06-16, 10:42 PM
I said comclean before renamerecordings...
Comclean relies on the .txt file generated by comskip, and the original filename in gbpvr's database.
Once comskip has run, then comclean must use the same filename.

Zaddaz wrote that, and it will work, if you are NOT using comclean.
If you use comclean, you must have them in the order I specified, because comclean calls renamerecordings ONLY after it's finished.
If you change the order, comclean won't know what file to work on, and simply error out.
You can never have enough tuners!
Pentium Quad / 4Gb Dual Channel RAM / XPSP3 / 2 x PVR-500, PVR-250 / GB-PVR
HamsterGirl35
Offline

Member

Posts: 83
Threads: 11
Joined: Jun 2005
#40
2005-06-16, 10:51 PM
Got it, thanks

I thought ZaDDaZ meant all 3 together would work together.....

Thanks

reboot Wrote:I said comclean before renamerecordings...
Comclean relies on the .txt file generated by comskip, and the original filename in gbpvr's database.
Once comskip has run, then comclean must use the same filename.

Zaddaz wrote that, and it will work, if you are NOT using comclean.
If you use comclean, you must have them in the order I specified, because comclean calls renamerecordings ONLY after it's finished.
If you change the order, comclean won't know what file to work on, and simply error out.
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (6): « Previous 1 2 3 4 5 6 Next »


Possibly Related Threads…
Thread Author Replies Views Last Post
  Script Helper Utility JavaWiz 2 2,422 2020-05-25, 11:00 AM
Last Post: Graham
  Channel Only Utility jwjames83 0 1,432 2009-04-30, 08:43 PM
Last Post: jwjames83
  Who would be interested in helping with a plugin install utility? mkenyon2 35 9,998 2009-02-28, 12:25 AM
Last Post: reven
  Utility: convert2dvd-win32 gnutech 5 3,099 2008-02-20, 01:09 AM
Last Post: zehd
  I-xmltv >Incremental XMLTV download utility Jim_ 57 17,498 2006-05-19, 06:22 PM
Last Post: Jim_
  Looking for utility to save a frame as a jpeg Peter K 0 1,205 2005-01-12, 10:25 PM
Last Post: Peter K
  Video conversion utility chasef 3 2,544 2004-11-26, 09:54 PM
Last Post: Crazyx
  Nice filter utility CodeMonkey 0 1,929 2004-08-17, 05:50 PM
Last Post: CodeMonkey

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

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

Linear Mode
Threaded Mode