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 … 87 88 89 90 91 … 125 Next »
How can I rename recordings to include episode?

 
  • 0 Vote(s) - 0 Average
How can I rename recordings to include episode?
tpgbpvr
Offline

Member

Posts: 58
Threads: 6
Joined: Jun 2005
#1
2005-11-26, 09:20 PM
Hello all.

I now use my gbpvr to record shows and then convert them to mp4 to playback on my ipod. I run comskip and comclean then move the file to my default conversion folder. I get this all to work (then videora runs automatically and converts to mp4 ready to transfer to my ipod).

BUT, I would like the recordings to be named with the show name as well as the episode name.
Currenlty I get a name like this: Seinfeld_20051123_23300000.mpg

I would like it to appear like this: Seinfeld - The Blood.mpg

I have tried renamerecording and this, as far I as I am able to figure out, will rename the show to the episode only, so The Blood.mpg.

After renamerecording I obviously I lose the file (since %1 no longer works) and I don't know how to automatically cut and move the file to my default conversion directory. How can I also find the name of the recently renamed file and then move it?

Any help?

Here is my postproceessing.bat

comskip %1
call comclean %1
del "%~dpn1.log"
del "%~dpn1.txt"
del "%~dpn1.logo.txt"
del "%~dpn1_original.mpg"
RenameRecording %1 > RenameRecording.log
move %1 F:\Media\Video\Videora\Downloads



FYI.......the Videora\Downloads location runs Videora and converts anything dumped there to mp4 for the ipod.

Thanks!


I had originally mis-posted in the plugins forum. This is a more approriate forum sorry.
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,823
Threads: 769
Joined: Nov 2003
#2
2005-11-26, 09:28 PM
This is probably better placed in the plugins forum, since there is nothing built in that'll do this for you. Moved.
KingArgyle
Offline

Posting Freak

Posts: 1,271
Threads: 95
Joined: Nov 2004
#3
2005-11-26, 11:16 PM
There are several different versions of RenameRecordings. I believe ZaDDaZ had a version that would do what you wanted. I'd recommend doing a search in the forums for some of his posts.
tpgbpvr
Offline

Member

Posts: 58
Threads: 6
Joined: Jun 2005
#4
2005-11-28, 02:42 AM
Thanks. I have found many posts and it seems like the question has been asked a few times... but I don't see an answer. It seems like the xml file could be updated, but not being a programmer am unable to do so without some guidance.

If anyone knows I would greatly appreciate it.
b00sfuk
Offline

Senior Member

Posts: 319
Threads: 26
Joined: Mar 2005
#5
2005-12-05, 09:24 PM
I'm also intererest in renaming with series & episode name but cannot find any information anywhere. Is there a version of renamerecordings anywhere that allows this please?
reboot
Offline

Posting Freak

Posts: 1,426
Threads: 89
Joined: Mar 2005
#6
2005-12-05, 09:35 PM
The best you can do, is have gbpvr put the recordings into their own folder, titled by show name, then rename recordings will rename the actual mpg to the show's subtitle.
eg.
You're recording a series titled "Buffy".
Each episode is named differently, maybe, "Welcome", then the second episode is named, "Harvest", then third, "Witch", etc...
GBPVR will put those recordings into a folder named "Buffy", and each episode in that folder will have those unique names.
All this information comes from your TV guide listing, so if they don't provide it, you don't get it, and renamerecordings won't rename anything.
You can never have enough tuners!
Pentium Quad / 4Gb Dual Channel RAM / XPSP3 / 2 x PVR-500, PVR-250 / GB-PVR
David
Offline

Senior Member

Posts: 435
Threads: 18
Joined: Oct 2005
#7
2005-12-05, 09:36 PM
I found a utility in the forums called recinfo. I use it to send e-mails notifying me of completed recordings, including any problems encountered. It will also call a batch file with all sorts of parameters, including channel, show name, episode name, etc. It would be fairly trivial to rename the show and move the file to a processing directory. A little more work to clean up the recording directory. Recinfo would be called from postprocessing.bat as one of the last commands (after any other utility that required the %1 command line arguement).

Note! The utility does not update the GBPVR database. GBPVR will delete the database entry when it can no longer find the associated file.
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
b00sfuk
Offline

Senior Member

Posts: 319
Threads: 26
Joined: Mar 2005
#8
2005-12-05, 09:46 PM
Thanks for info, I'll use the folders method for now and have a look at recinfo when I get time. I am still undecided as to the added value of the database (and programme descriptions etc.) over just using the video library (and then being able to postprocess as described). I'm new to GB-PVR so I'm trying to continue my library as I did with my old solution.
reboot
Offline

Posting Freak

Posts: 1,426
Threads: 89
Joined: Mar 2005
#9
2005-12-05, 09:49 PM
For the OP, you could try this:
Code:
comskip %1
call comclean %1
del "%~dpn1.log"
del "%~dpn1.txt"
del "%~dpn1.logo.txt"
del "%~dpn1_original.mpg"
RenameRecording %1 > RenameRecording.log
move "%~dpn1.mpg F:\Media\Video\Videora\Downloads\*.*"
You can never have enough tuners!
Pentium Quad / 4Gb Dual Channel RAM / XPSP3 / 2 x PVR-500, PVR-250 / GB-PVR
David
Offline

Senior Member

Posts: 435
Threads: 18
Joined: Oct 2005
#10
2005-12-05, 10:05 PM (This post was last modified: 2005-12-05, 11:44 PM by David.)
reboot Wrote:For the OP, you could try this:
Code:
comskip %1
call comclean %1
del "%~dpn1.log"
del "%~dpn1.txt"
del "%~dpn1.logo.txt"
del "%~dpn1_original.mpg"
RenameRecording %1 > RenameRecording.log
move "%~dpn1.mpg F:\Media\Video\Videora\Downloads\*.*"

I think the "%~dpn1" would get clobbered by renamerecording. I've also had problems when specifying wildcards in the destination of my move. The Win2k/winXP VDM only wants the destination directory. Something like this would work better:

move "%~dp1*.mpg" "F:\Media\Video\Videora\Downloads\"

This, of course, would move every *.mpg file in the directory, including any that are currently being recorded. Use with care!
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
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (5): 1 2 3 4 5 Next »


Possibly Related Threads…
Thread Author Replies Views Last Post
  Blue Skin: Recordings - Include Program Description ralphy 4 3,611 2010-05-17, 01:32 AM
Last Post: ralphy
  EPG/XML parsing: reading Season and Episode data from title Sykor 7 7,897 2010-02-16, 05:52 AM
Last Post: whurlston
  TV Recordings 2.6 Confirm Delete Graham 2 2,381 2008-10-21, 12:47 PM
Last Post: Graham
  Comskip, Comclean, Rename Recording, and Transcoding heath11 18 10,868 2008-03-27, 11:45 PM
Last Post: _Dude_
  Any rename utility that renames before recording? linfor 37 9,032 2008-01-04, 05:08 AM
Last Post: linfor
  Option to turn ComSkip off for certain recordings? wildatom 3 1,731 2007-12-01, 02:32 AM
Last Post: kayak4ever
  comskip and digital recordings agidius 12 3,930 2007-11-21, 03:39 PM
Last Post: wtg
  Comskip trouble with high bit rate recordings ApexHack 4 2,155 2007-10-16, 02:29 AM
Last Post: erik
  Renaaming recordings & DB3 management marcomessina 0 1,347 2007-10-07, 04:51 PM
Last Post: marcomessina
  Trim recordings? djmuk 4 1,896 2007-09-29, 01:30 AM
Last Post: ACTCMS

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

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

Linear Mode
Threaded Mode