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 … 85 86 87 88 89 … 125 Next »
How to get the new name after renamerecordings

 
  • 0 Vote(s) - 0 Average
How to get the new name after renamerecordings
jam_zhou
Offline

Senior Member

Posts: 632
Threads: 179
Joined: Sep 2005
#21
2005-12-19, 02:44 PM
tpgbpvr Wrote:Any way to get this to incorporate kingargyle's new renamerecording that renames the program to include "title - episode.mpg"?

see his post http://forums.gbpvr.com/showpost.php?p=7...stcount=23

that would be ideal!


If you give me an example of the log file then I might be able to do so...in the mean time, check out http://forums.nextpvr.com/showthread.php?t=10685&page=5 to see if it fits your needs. Reboot posted an example log file in that thread. That script is optimized for my own mTranscode.vbs but it's easily adaptable to the batch file I've posted a couple of posts above. Let me know if this helps.

Jam.z
tpgbpvr
Offline

Member

Posts: 58
Threads: 6
Joined: Jun 2005
#22
2005-12-21, 11:00 PM
jam_zhou Wrote:If you give me an example of the log file then I might be able to do so...in the mean time, check out http://forums.nextpvr.com/showthread.php?t=10685&page=5 to see if it fits your needs. Reboot posted an example log file in that thread. That script is optimized for my own mTranscode.vbs but it's easily adaptable to the batch file I've posted a couple of posts above. Let me know if this helps.

Jam.z
Great. As soon as KingArgyle has time to update the renamerecording v1.1 I will post a log file. Thanks!
KingArgyle
Offline

Posting Freak

Posts: 1,271
Threads: 95
Joined: Nov 2004
#23
2005-12-22, 04:13 AM
New Version can be found here:

http://forums.gbpvr.com/showpost.php?p=7...stcount=36
tpgbpvr
Offline

Member

Posts: 58
Threads: 6
Joined: Jun 2005
#24
2005-12-22, 08:20 AM
KingArgyle Wrote:New Version can be found here:

http://forums.gbpvr.com/showpost.php?p=7...stcount=36


KingArglye - It Works! Thanks very much.
King and jam_zhou:
Here is my rename.log for 2 random recordings. The first has an episode name, the second did not.

The commandline used was:
comskip "F:\Media\Video\Captures\Design on a Dime\Design on a Dime_20051221_23002330.mpg"

Opening F:\Media\Video\Captures\Design on a Dime\Design on a Dime_20051221_23002330.mpg
Using comskip.ini for initiation values.
Commercials were found.
Resulting cutpoints: 0:2:48 0:10:31 0:16:20 0:20:24

C:\Program Files\devnz\gbpvr>"c:\Program Files\devnz\gbpvr\mpgtx.exe" -j -f -o "F:\Media\Video\Captures\Design on a Dime\Design on a Dime_20051221_23002330_clean.mpg" "F:\Media\Video\Captures\Design on a Dime\Design on a Dime_20051221_23002330.mpg" [-0:2:48] [0:5:33-0:13:16] [0:15:49-0:21:38] [0:24:8-0:28:12] [0:28:21-]
Resulting cutpoints: 0:2:48 0:10:31 0:16:20 0:20:24
RenameRecording v1.1 beta build20051221
Title: Design on a Dime
Argument: -t F:\Media\Video\Captures\Design on a Dime\Design on a Dime_20051221_23002330.mpg
Episode name: Design on a Dime - Romantic Master Bedroom
Episode Oid: 459
Renaming file: F:\Media\Video\Captures\Design on a Dime\Design on a Dime_20051221_23002330.mpg
to: F:\Media\Video\Captures\Design on a Dime\Design on a Dime - Romantic Master Bedroom.mpg
The commandline used was:
comskip "F:\Media\Video\Captures\The Colbert Report\The Colbert Report_20051221_23300000.mpg"

Opening F:\Media\Video\Captures\The Colbert Report\The Colbert Report_20051221_23300000.mpg
Using comskip.ini for initiation values.
Commercials were found.
Resulting cutpoints: 0:0:0 0:4:35 0:10:3

C:\Program Files\devnz\gbpvr>"c:\Program Files\devnz\gbpvr\mpgtx.exe" -j -f -o "F:\Media\Video\Captures\The Colbert Report\The Colbert Report_20051221_23300000_clean.mpg" "F:\Media\Video\Captures\The Colbert Report\The Colbert Report_20051221_23300000.mpg" [-0:0:0] [0:2:54-0:7:29] [0:9:45-0:15:13] [0:19:46-]
Resulting cutpoints: 0:0:0 0:4:35 0:10:3
RenameRecording v1.1 beta build20051221
Title: The Colbert Report
Argument: -t F:\Media\Video\Captures\The Colbert Report\The Colbert Report_20051221_23300000.mpg
No episode name found



KingArgyle mentions something about an Environement variable called RENAME. What does that mean?

essentially I want to record then comskip then comclean then rename then delete log and other txt files and original mpg then move the renamed to a different folder.

I was using in postprocessing.bat:

comskip %1 >> rename.log
call comclean %1 >> rename.log

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

RenameRecording -t %1 >> rename.log

move %1 F:\Media\Video\Videora\Downloads


This worked for the no episode capture but for the episode capture the file was not moved it remained in the folder. Any ideas?

Thanks
KingArgyle
Offline

Posting Freak

Posts: 1,271
Threads: 95
Joined: Nov 2004
#25
2005-12-22, 02:19 PM
if you wanted to move the file that was renamed, you can try:

move %RENAME% F:\Media\Video\Videora\Downloads

It may or may not work depending on if the environment variable is being set correctly after RenameRecording runs.
reboot
Offline

Posting Freak

Posts: 1,426
Threads: 89
Joined: Mar 2005
#26
2005-12-22, 04:34 PM
Code:
move %RENAME% F:\Media\Video\Videora\Downloads
Doesn't work...I tried it with and without quotes, various paths, adding wildcards, etc...
You can never have enough tuners!
Pentium Quad / 4Gb Dual Channel RAM / XPSP3 / 2 x PVR-500, PVR-250 / GB-PVR
KingArgyle
Offline

Posting Freak

Posts: 1,271
Threads: 95
Joined: Nov 2004
#27
2005-12-22, 06:05 PM
Yeah, I kinda figured it might not work....It is probably getting wiped out after the program finishes executing.
David
Offline

Senior Member

Posts: 435
Threads: 18
Joined: Oct 2005
#28
2005-12-22, 08:59 PM
KingArgyle Wrote:Yeah, I kinda figured it might not work....It is probably getting wiped out after the program finishes executing.

Any chance that it might work if you created the variable before calling renamerecordings? Would it update the value of the existing variable and then keep it after the run?

Just a thought, but I am not in a position to test the idea at the moment.
David

PVR PC: Win2K3, Athlon x2 64 4600+, 1280MB Ram, 40+400 GB HD's, Gigabyte Network
PVR-250, ATSC-110 digital x2, GBPVR v1.3.7 w/SQLite DB
Extras: Addepisode 41, Comskip 79.46, EWA 76, Zaptools

DSM-520 (D-Link Media Lounge) FW 1.04 using TVersity Media Server 0.9.11.4
DSM-320 (D-Link Media Lounge) FW 1.09
MediaMVP

More specs
KingArgyle
Offline

Posting Freak

Posts: 1,271
Threads: 95
Joined: Nov 2004
#29
2005-12-23, 02:03 AM
It might, but I haven't tested it either. I tossed it in as a possible work around for some people, but really don't use it myself. If I get a chance I'll debug it further, but it's low on the list.
tpgbpvr
Offline

Member

Posts: 58
Threads: 6
Joined: Jun 2005
#30
2006-01-02, 01:20 AM
David Wrote:Any chance that it might work if you created the variable before calling renamerecordings? Would it update the value of the existing variable and then keep it after the run?

Just a thought, but I am not in a position to test the idea at the moment.


David or KingArgyle were you able to get this working?

Just wondering. If you have the time would love it. Thanks.

Happy New Year
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

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


Possibly Related Threads…
Thread Author Replies Views Last Post
  renamerecordingS the..sleeper 1 1,623 2009-04-21, 08:36 PM
Last Post: David
  Episode Numbers - RenameRecordings or MyVideos? humpty 16 5,409 2006-08-18, 01:56 PM
Last Post: humpty
  Renamerecordings - any way to specify naming convention? linfor 1 1,081 2005-08-22, 04:05 PM
Last Post: reboot
  SA, Comclean, RenameRecordings... reboot 53 12,757 2005-08-20, 08:50 PM
Last Post: jam292
  RenameRecordings Problem BigT 3 1,844 2005-07-23, 02:57 PM
Last Post: afriend1
  Convert2wme and renamerecordings erik 0 1,701 2005-07-09, 12:52 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