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 … 89 90 91 92 93 … 125 Next »
XRecord - Xexport and Rename recordings

 
  • 0 Vote(s) - 0 Average
XRecord - Xexport and Rename recordings
A_Brass
Offline

Senior Member

Posts: 474
Threads: 22
Joined: Mar 2005
#1
2005-12-19, 08:41 PM
I'm having a brain cramp about how to get this working the way I would lik to see it. What I want to do is record a show, rename it, and export the file data to the dat file (via xexport) so the dat file has the new name. If I do the export from within XRecord it works fine but I want to automate it in the postprocessing.bat

My postprocessing.bat looks like this:

RenameRecording.exe %1
xexport %1
rectracker %1 > rectracker.log

I was thinking this would rename my mpg and export the file data into the xexport.dat file. But its not working. The mpg is renamed but the dat is not created. I'm know it's due to the renamerecording changing the name before xexport can create the dat file but I'm not sure how to get it work the way I want.

Any suggestions?
GBPVR Server:
AMD Sempron 3300+, 1gb DDR, 100, 200 & 500gb HDDs, DVD -/+RW PVR150 RETAIL, PVR150MCE.
GBPVR 1.0.16, SKIN'S = Default Blue, PLUGIN'S = None
MediaMVP
smeghead
Offline

Senior Member

Posts: 300
Threads: 23
Joined: Jan 2005
#2
2005-12-19, 08:47 PM
the xexport needs to be first as it cannot work on the %1 parameter anymore (because renamerecording has changed the filename)

Swap the xexport and renamerecording commands around.

xexport doesn't alter the filename and therefore %1 will still be correct for renamerecording. Renamerecording should also rename the .dat file if it finds it.
A_Brass
Offline

Senior Member

Posts: 474
Threads: 22
Joined: Mar 2005
#3
2005-12-19, 09:01 PM
smeghead Wrote:xexport doesn't alter the filename and therefore %1 will still be correct for renamerecording. Renamerecording should also rename the .dat file if it finds it.

Thanks smeghead, I follow what your saying and it does work when set up like you suggest, but the dat file is now useless. Because the file name has changed the dat file now points to a file the does not exist.

I should point out that I'm using the dat files so I have access to program info when viewing recordings on a different PC running GBPVR. So a working DAT file is very important. But since I also like to use ORB when I'm out of the house having the file name changed is also a huge benifit.

So, when looked at via another pc running GBPVR if the dat file has the wrong file name it doesn't give you the program info.

I really want both. I'm hopeing there is a a way to do this. Is it possible to do a global xexport on all files in the data base?

Thanks
GBPVR Server:
AMD Sempron 3300+, 1gb DDR, 100, 200 & 500gb HDDs, DVD -/+RW PVR150 RETAIL, PVR150MCE.
GBPVR 1.0.16, SKIN'S = Default Blue, PLUGIN'S = None
MediaMVP
jam_zhou
Offline

Senior Member

Posts: 632
Threads: 179
Joined: Sep 2005
#4
2005-12-19, 09:21 PM
sounds like renamerecordings is a good plugin but it's causing a lot of syntax and script flow issues...lots of talk about it here

http://forums.nextpvr.com/showthread.php?t=11428

Also a couple of solutions to get the new name for rename recordings...one batch and one vbs.
KingArgyle
Offline

Posting Freak

Posts: 1,271
Threads: 95
Joined: Nov 2004
#5
2005-12-19, 10:20 PM
Looks like I'm going to have to dust off some of ZaDDaZ's code for RenameRecordings and incorporate the Title stuff I added for my version. I'll see what I can do to also make sure that if there is a .dat file it renames that as well.
KingArgyle
Offline

Posting Freak

Posts: 1,271
Threads: 95
Joined: Nov 2004
#6
2005-12-20, 02:22 AM
I've updated RenameRecording so that it should correctly handle the .Dat files and include the Title of the show as well as sub title if it exists.

http://forums.nextpvr.com/showthread.php?t=10931&page=4
A_Brass
Offline

Senior Member

Posts: 474
Threads: 22
Joined: Mar 2005
#7
2005-12-20, 02:34 AM
KingArgyle Wrote:I've updated RenameRecording so that it should correctly handle the .Dat files and include the Title of the show as well as sub title if it exists.

http://forums.nextpvr.com/showthread.php?t=10931&page=4


Wow, that was fast. How might this affect my situation. Will it now rename not only the dat but change the file name within the dat file? Or can it be run after the rename is complete.

Thanks for such a prompt response.
GBPVR Server:
AMD Sempron 3300+, 1gb DDR, 100, 200 & 500gb HDDs, DVD -/+RW PVR150 RETAIL, PVR150MCE.
GBPVR 1.0.16, SKIN'S = Default Blue, PLUGIN'S = None
MediaMVP
KingArgyle
Offline

Posting Freak

Posts: 1,271
Threads: 95
Joined: Nov 2004
#8
2005-12-20, 02:43 AM
It will only rename the .dat file itself, it doesn't look in the file and do any searching or replacing. It is still best to have RenameRecording as the last process run in a script.
A_Brass
Offline

Senior Member

Posts: 474
Threads: 22
Joined: Mar 2005
#9
2005-12-20, 02:49 AM
KingArgyle Wrote:It will only rename the .dat file itself, it doesn't look in the file and do any searching or replacing. It is still best to have RenameRecording as the last process run in a script.


Ok I see, thanks. So it doesn't address what I'm trying to do. I'll check the other thread's to see what alterntive methods I can find to get the DAT, MPG and the data within the DAT all renamed.

Thanks
GBPVR Server:
AMD Sempron 3300+, 1gb DDR, 100, 200 & 500gb HDDs, DVD -/+RW PVR150 RETAIL, PVR150MCE.
GBPVR 1.0.16, SKIN'S = Default Blue, PLUGIN'S = None
MediaMVP
KingArgyle
Offline

Posting Freak

Posts: 1,271
Threads: 95
Joined: Nov 2004
#10
2005-12-20, 03:16 AM
I have a slight modification that I just worked on that will set an Environment variable called RENAME to the new name of the recording. This could be used by an external utility to do a search and replace.

A_Brass, PM me and I'll send you a beta that contains the Environment variable code.
« 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
  Blue Skin: Recordings - Include Program Description ralphy 4 3,486 2010-05-17, 01:32 AM
Last Post: ralphy
  TV Recordings 2.6 Confirm Delete Graham 2 2,260 2008-10-21, 12:47 PM
Last Post: Graham
  Comskip, Comclean, Rename Recording, and Transcoding heath11 18 10,619 2008-03-27, 11:45 PM
Last Post: _Dude_
  Any rename utility that renames before recording? linfor 37 8,483 2008-01-04, 05:08 AM
Last Post: linfor
  Option to turn ComSkip off for certain recordings? wildatom 3 1,592 2007-12-01, 02:32 AM
Last Post: kayak4ever
  comskip and digital recordings agidius 12 3,651 2007-11-21, 03:39 PM
Last Post: wtg
  Comskip trouble with high bit rate recordings ApexHack 4 1,995 2007-10-16, 02:29 AM
Last Post: erik
  Renaaming recordings & DB3 management marcomessina 0 1,280 2007-10-07, 04:51 PM
Last Post: marcomessina
  Trim recordings? djmuk 4 1,754 2007-09-29, 01:30 AM
Last Post: ACTCMS
  Xport Xrecord schedules? capone 3 1,728 2007-08-21, 01:41 PM
Last Post: fla

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

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

Linear Mode
Threaded Mode