NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Information Community Announcements v
« Previous 1 … 13 14 15 16 17 … 56 Next »
mTranscode BETA - automatic encoding of recordings

 
  • 0 Vote(s) - 0 Average
mTranscode BETA - automatic encoding of recordings
jam_zhou
Offline

Senior Member

Posts: 632
Threads: 179
Joined: Sep 2005
#41
2005-12-16, 05:28 PM
I believe the script will go through the entire log file and pick out all those that fit the criteria. The only way the script ends is when it reaches the end of the log file.

Remember though to delete the log after the new names have been parsed or else you'll be encoding the same files over again.

As for the directory tree, it should only be a few lines difference, but I'll have to do some verifying. Give me a couple of days.
reboot
Offline

Posting Freak

Posts: 1,426
Threads: 89
Joined: Mar 2005
#42
2005-12-16, 05:44 PM
It seems to work.
The log contains lines such as, "File 'D:\Folder Name\File Name.mpg' has already been renamed" and this makes no difference to the script. It simply finds the right file, and does it's thing, as verified by mtranscode.log Big Grin
You can never have enough tuners!
Pentium Quad / 4Gb Dual Channel RAM / XPSP3 / 2 x PVR-500, PVR-250 / GB-PVR
reboot
Offline

Posting Freak

Posts: 1,426
Threads: 89
Joined: Mar 2005
#43
2005-12-17, 08:57 PM
New problem Big Grin
KingArgyle has just released renamerecordings that includes showname and episodename...something I've been wanting for a very long time.
The trouble is, the renamerecordings.log generated has a completely different format.
Is it possible to modify getnewname.vbs to parse this new log?
Here's a log example
Code:
Argument: -t
Path: D:\Bad Girls\
Title: Bad Girls
GetProgramByDate: 12/17/2005 12:00:00 PM Bad Girls
Retrieving Programs
Retrieved 4
ReturnValue: GBPVR.Public.Programme
New Filename: D:\Bad Girls\Bad Girls - Drug Wars.mpg
New Comskip Filename: D:\Bad Girls\Bad Girls - Drug Wars.txt
You can never have enough tuners!
Pentium Quad / 4Gb Dual Channel RAM / XPSP3 / 2 x PVR-500, PVR-250 / GB-PVR
jam_zhou
Offline

Senior Member

Posts: 632
Threads: 179
Joined: Sep 2005
#44
2005-12-18, 03:08 PM
Here it is...it looks for ".mpg" AND "ew Filename"
jam_zhou
Offline

Senior Member

Posts: 632
Threads: 179
Joined: Sep 2005
#45
2005-12-18, 09:47 PM
Hi Reboot,

Set USEEXTDIR=2 and it will now put the files in their respective folders.

e.g. EXTDIR=.\transcodedmovies
mpeg file= c:\move one\junk two\movie1.mpg

will be moved to .\transcodedmovies\movie one\junk two\movie1.avi

Try it out and see...it worked for one of my test cases.
reboot
Offline

Posting Freak

Posts: 1,426
Threads: 89
Joined: Mar 2005
#46
2005-12-19, 07:05 PM
Finally! Everything works (almost) perfectly!
Your scripts do exactly what's needed.
I have the odd error with renamerecordings, and KingArgyle is working on it for us.
Quick rundown:
Comskip runs parallel.
Videoredo cuts.
Renamerecordings renames, including showname and episode name.
Getnewname.vbs parses the renamerecordings.log and gets the name successfully.
mTranscode_0p0p3.vbs transcodes the file, and puts it into my other folder, in a subfolder using showname, and inside that is my renamed file, including showname and episodename.
It's a bit redundant, but it works smoothly behind the scenes, just like we've all been waiting for!
I can't thank you enough for putting this all together.

I've added a couple of lines in my .bat, to delete the original show's folder and contents, to save space, so now I'm left with the much smaller avi, with no visible degradation in quality, and can set it and forget it. Big Grin
I'm now implementing this on all the computers in the house.
My daughter says, "I love you!" :eek: Cool
You can never have enough tuners!
Pentium Quad / 4Gb Dual Channel RAM / XPSP3 / 2 x PVR-500, PVR-250 / GB-PVR
tpgbpvr
Offline

Member

Posts: 58
Threads: 6
Joined: Jun 2005
#47
2005-12-19, 08:35 PM
reboot Wrote:Finally! Everything works (almost) perfectly!
Your scripts do exactly what's needed.
I have the odd error with renamerecordings, and KingArgyle is working on it for us.
Quick rundown:
Comskip runs parallel.
Videoredo cuts.
Renamerecordings renames, including showname and episode name.
Getnewname.vbs parses the renamerecordings.log and gets the name successfully.
mTranscode_0p0p3.vbs transcodes the file, and puts it into my other folder, in a subfolder using showname, and inside that is my renamed file, including showname and episodename.
It's a bit redundant, but it works smoothly behind the scenes, just like we've all been waiting for!
I can't thank you enough for putting this all together.

I've added a couple of lines in my .bat, to delete the original show's folder and contents, to save space, so now I'm left with the much smaller avi, with no visible degradation in quality, and can set it and forget it. Big Grin
I'm now implementing this on all the computers in the house.
My daughter says, "I love you!" :eek: Cool

Isn't this great! These guys put in the time to help everyone else out. I do feel that this is a must have for gbpvr.

So what lines have you added to your .bat to delete the extra files? assuming you delete them to save space.

Thanks.
reboot
Offline

Posting Freak

Posts: 1,426
Threads: 89
Joined: Mar 2005
#48
2005-12-19, 08:45 PM
I have my recordings all on a separate drive, so I simply delete everything on that drive.
Code:
IF EXIST "%~dpn1*.*" DEL "%~dpn1*.*" /y
Replace the *.* with extentions, if you only want to delete certain things.
eg. Delete only the mpg
Code:
IF EXIST "%~dpn1*.mpg" DEL "%~dpn1*.mpg" /y
eg. Delete only the original mpg
Code:
IF EXIST "%~dpn1_original.mpg" DEL "%~dpn1_original.mpg" /y
You can never have enough tuners!
Pentium Quad / 4Gb Dual Channel RAM / XPSP3 / 2 x PVR-500, PVR-250 / GB-PVR
nitrogen_widget
Offline

Posting Freak

Posts: 797
Threads: 33
Joined: Aug 2005
#49
2006-01-07, 02:58 AM
So, I got the automatic cutting, renaming, & coverting to xvid working perfectly.

Then I started playing with the MVP & the GBPVR client & even though i've read about it, seeing what you can do is just really neat.

Untill I tried to watch one of my tv show recordings & the MVP locked up & I realised it was because they were converted to .avi. D'oh! :o
tpgbpvr
Offline

Member

Posts: 58
Threads: 6
Joined: Jun 2005
#50
2006-01-08, 02:40 AM
reboot Wrote:I have my recordings all on a separate drive, so I simply delete everything on that drive.
Code:
IF EXIST "%~dpn1*.*" DEL "%~dpn1*.*" /y
Replace the *.* with extentions, if you only want to delete certain things.
eg. Delete only the mpg
Code:
IF EXIST "%~dpn1*.mpg" DEL "%~dpn1*.mpg" /y
eg. Delete only the original mpg
Code:
IF EXIST "%~dpn1_original.mpg" DEL "%~dpn1_original.mpg" /y

reboot-
I had to reinstall everything and now am at a loss as to which one's are compatible.
I know you had it all working like a charm.

Which version of KingArgyle's renamerecording are you using?
RenameRecording v1.1 build20051223?

Are you using jam_zhou's getnewname script?
do you know which version of getnewname.vbs?

Thanks. I had to reinstall everything and now am at a loss as to which one's are compatible.
I know you had it all working like a charm.
comskip, cmoclean, rename - t, then need the new name via getnewname.vbs to dump it into another folder.

Thanks.
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (9): « Previous 1 … 3 4 5 6 7 … 9 Next »
Jump to page 


Possibly Related Threads…
Thread Author Replies Views Last Post
  New LG and Samsung NextPVR Web Smart TV App available for beta testing. fred250 388 140,958 2017-04-10, 10:46 AM
Last Post: fred250
  Bluray Player Beta whurlston 23 12,196 2015-10-05, 09:32 AM
Last Post: Lao Pan
  Movies beta vik 66 31,006 2015-03-31, 03:13 AM
Last Post: Lao Pan
  Need beta testers for "NextPVR for Samsung" (client for samsung smart tvs/blurays) reven 61 27,756 2013-12-03, 10:21 AM
Last Post: martint123
  imageGrabLite Beta mvallevand 84 61,954 2013-10-04, 06:40 PM
Last Post: mvallevand
  SSPlus Screensaver - Photo Slideshow Beta ACTCMS 40 14,323 2012-12-07, 01:49 AM
Last Post: ACTCMS
  New External App : Channel Logo Tools For NPVR (Beta) systemshark 0 1,701 2011-09-03, 08:15 AM
Last Post: systemshark
  SSPlus 0.9.1 BETA - a screensaver for NPVR ACTCMS 18 6,173 2011-07-18, 12:52 AM
Last Post: johnsonx42
  System Plugin for nPVR - Early Beta imilne 176 49,058 2011-07-16, 04:31 PM
Last Post: johnsonx42
  NPVR Rename Recordings Batch File raceviper13 8 8,143 2011-04-23, 11:52 PM
Last Post: raceviper13

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

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

Linear Mode
Threaded Mode