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 … 8 9 10 11 12 … 125 Next »
File Renaming Utility: AddEpisode

 
  • 0 Vote(s) - 0 Average
File Renaming Utility: AddEpisode
JavaWiz
Offline

Posting Freak

Jacksonville, FL. USA
Posts: 2,522
Threads: 141
Joined: Dec 2006
#161
2007-11-17, 07:57 AM
stefan Wrote:If I understand things correctly, I could use use addEpisode manually to rename a few recordings even when there is no episode information in the EPG.

I'd like to be able to in some way add some episode information to a few of my kids' shows, so they can find "the Backyardigans with the Vikings" without looking through all the Backyardigans shows Smile I don't get any episode information in my EPG.

So, my question is, could I run

addEpisode Backyardigans.mpg "{show} - Vikings"

and get it renamed to Backyardigans - Vikings.mpg?
You might look at this post. EpisodeTweaker might be just what you are looking for. http://forums.gbpvr.com/showpost.php?p=2...stcount=10
stefan
Offline

Posting Freak

Posts: 3,116
Threads: 81
Joined: Oct 2004
#162
2007-11-26, 10:15 PM
Thank's. I'll have a look Smile
I'm not always right
GB-PVR 1.2.9
Accent HT-400 Case, AMD Athlon 64 3800+ 1024MB, 1TB+300GB+180GB, WinXP Pro-SP2, NVidia 7600GT
Nova-T USB2, PVR-350 recording from Dilog 355 DVB-T box, USB-UIRT (receiving & transmitting)
stefan
Offline

Posting Freak

Posts: 3,116
Threads: 81
Joined: Oct 2004
#163
2007-11-26, 10:22 PM
Seems to work, thank's. Now if I could find a tool to rename recordings that gbpvr named incorrectly in the beginning of the 1.0.x adventure... Wink
I'm not always right
GB-PVR 1.2.9
Accent HT-400 Case, AMD Athlon 64 3800+ 1024MB, 1TB+300GB+180GB, WinXP Pro-SP2, NVidia 7600GT
Nova-T USB2, PVR-350 recording from Dilog 355 DVB-T box, USB-UIRT (receiving & transmitting)
JavaWiz
Offline

Posting Freak

Jacksonville, FL. USA
Posts: 2,522
Threads: 141
Joined: Dec 2006
#164
2007-11-26, 10:25 PM
stefan Wrote:Seems to work, thank's. Now if I could find a tool to rename recordings that gbpvr named incorrectly in the beginning of the 1.0.x adventure... Wink
Do you want to rename the show as GBPVR displays it (ie. in the database), or rename it on the hard-drive (ie the filename)?
linfor
Offline

Member

Posts: 157
Threads: 42
Joined: Jun 2005
#165
2007-12-20, 12:51 AM
I cannot get this to work.
I have tried adding
addepisode %1 "({episode}{or}{show} - {monthnameshort} {day} {yearshort})"

and
addepisode %1 "{show}{[_cap]}{episode}{[_]}({year}{month}{day})"

to the PostProcessing file and each time after it runs the instruction file pops up and nothing is renamed
JavaWiz
Offline

Posting Freak

Jacksonville, FL. USA
Posts: 2,522
Threads: 141
Joined: Dec 2006
#166
2007-12-20, 05:45 PM
linfor Wrote:I cannot get this to work.
I have tried adding
addepisode %1 "({episode}{or}{show} - {monthnameshort} {day} {yearshort})"

and
addepisode %1 "{show}{[_cap]}{episode}{[_]}({year}{month}{day})"

to the PostProcessing file and each time after it runs the instruction file pops up and nothing is renamed
Attach your post processing batch file and I'll take a look.
linfor
Offline

Member

Posts: 157
Threads: 42
Joined: Jun 2005
#167
2007-12-21, 01:42 AM
Here is the postprocessing and the episodes.txt

What I want is for addepisode to get the episode information from episodes.txt and rename the files using that info
so for example Amar sin limites would become Amar Sin Limites_cap25_20071220

Question: Do I have to add each days info to the episodes.txt? Is there anyway to get the file to auto-increment the episode number each time the program is recorded?
JavaWiz
Offline

Posting Freak

Jacksonville, FL. USA
Posts: 2,522
Threads: 141
Joined: Dec 2006
#168
2007-12-21, 03:35 AM
linfor Wrote:Here is the postprocessing and the episodes.txt

What I want is for addepisode to get the episode information from episodes.txt and rename the files using that info
so for example Amar sin limites would become Amar Sin Limites_cap25_20071220

Question: Do I have to add each days info to the episodes.txt? Is there anyway to get the file to auto-increment the episode number each time the program is recorded?

I suspect the line(s) in the postprocessing.txt file are in your PostProcessing.bat file
Code:
addepisode.exe  %1  "{show}{[_cap]}{episode}{[_]}({year}{month}{day})"
addepisode.exe %1 > addepisode.log

The first line is correct. If it can, the program will make the substitutions you've specified.
The second line does nothing but cause the AddEpisode Help screen to be displayed. It should be removed from your batch file.

The line in your PostProcessing.bat file should be:

addepisode.exe %1 "{show}{[_cap]}{episode}{[_]}({year}{month}{day})" > addepisode.log





Since I don't use the season and episode feature (ie the text file), I can't give you any advice on how that actually works...
linfor
Offline

Member

Posts: 157
Threads: 42
Joined: Jun 2005
#169
2007-12-21, 08:57 AM (This post was last modified: 2007-12-25, 07:58 AM by linfor.)
JavaWiz Wrote:I suspect the line(s) in the postprocessing.txt file are in your PostProcessing.bat file
Code:
addepisode.exe  %1  "{show}{[_cap]}{episode}{[_]}({year}{month}{day})"
addepisode.exe %1 > addepisode.log

The first line is correct. If it can, the program will make the substitutions you've specified.
The second line does nothing but cause the AddEpisode Help screen to be displayed. It should be removed from your batch file.

The line in your PostProcessing.bat file should be:

addepisode.exe %1 "{show}{[_cap]}{episode}{[_]}({year}{month}{day})" > addepisode.log





Since I don't use the season and episode feature (ie the text file), I can't give you any advice on how that actually works...

That worked but it did not pull any information from addepisodes.txt so I combined it with EpisodesTweaker and that did it. EpisodeTweaker allows you to add episode information to the guide so it is passed to addepisode.
lstepnio
Offline

Member

Posts: 81
Threads: 7
Joined: Jan 2007
#170
2008-01-31, 11:19 PM
Looks like all of the sudden Avast is detecting addepisode.exe as a Win32:Sohanad-BE virus. Any suggestions?
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (19): « Previous 1 … 15 16 17 18 19 Next »
Jump to page 


Possibly Related Threads…
Thread Author Replies Views Last Post
  vidImport utility support carpeVideo 73 54,105 2012-05-27, 06:27 AM
Last Post: jksmurf
  xmltv doesn't import all the channel information in xmltv file vokuit00 2 2,868 2010-06-07, 04:35 AM
Last Post: vokuit00
  transcode from file.ts to file.mpeg in parallelproocessing alevideotestservice 4 2,924 2009-12-30, 07:27 PM
Last Post: alevideotestservice
  Showanalyzer Doesn't Run While Show is Recording a .TS File ww4397 1 2,560 2009-12-02, 11:14 AM
Last Post: ww4397
  Newbie needs help with renaming external plugins and making some plugins to work Chris79 2 2,421 2009-06-14, 05:36 AM
Last Post: Chris79
  Comskip: Interpreting the aspects file zehd 0 1,599 2008-11-29, 07:41 AM
Last Post: zehd
  EPG Utility: YApi2XML (discontinued) -Oz- 503 137,616 2008-11-28, 08:55 PM
Last Post: zehd
  Extended program information utility? SLR_65 10 5,468 2008-10-29, 02:33 AM
Last Post: UncleJohnsBand
  SkipTool creates a bogus file if the name contains & mkenyon2 40 15,282 2008-10-23, 06:59 PM
Last Post: pastro
  yapi2cml reporting corrupted listing file? teookie 1 1,709 2008-09-25, 10:50 PM
Last Post: zehd

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

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

Linear Mode
Threaded Mode