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 … 25 26 27 28 29 … 125 Next »
Help out a N00B w/skip and transcode? (I've done the research)

 
  • 0 Vote(s) - 0 Average
Help out a N00B w/skip and transcode? (I've done the research)
-Oz-
Offline

Posting Freak

Posts: 803
Threads: 33
Joined: Aug 2006
#11
2007-04-29, 04:18 PM
i'm wondering if you could do something like:
%~dpnnew'

or if that doesn't work instead of having the variable new make it like 3 or something and then do %~dpn3

Just ideas
Dan Blomberg
[SIZE="1"]HTPC 1: MSI K8NGM2-FID, AMD 64 3000+, WD 200gb HDD, 1gb ram, NSK2400, PVR-500, Harmony 659
HTPC 2: ASUS M2NPV-VM, AMD 64 3200+, WD 250gb HDD, 1gb ram, nVidia DualTV MCE, NSK2400, Harmony 720
HTPC 3: GIGABYTE GA-E7AUM-DS2H GeForce 9400, Intel E5200 Wolfdale, WD 640gb HDD, 4gb ram, Antec Fusion 2, HVR-1600, hdhomerun, Harmony 880, PCH A-110
GBPVR 1.4.7 Additions: Weather2, UltraXMLTV, Comskip
Project: Setup Logitech Harmony Remote[/SIZE]
pointlisse
Offline

Member

Posts: 74
Threads: 12
Joined: Apr 2007
#12
2007-04-29, 04:29 PM
Possibly. I'll give that a shot and report back. Thanks!
pointlisse
Offline

Member

Posts: 74
Threads: 12
Joined: Apr 2007
#13
2007-04-29, 07:37 PM
No luck so far. I added to the pp.bat file:
echo %~dpnnew% >>dpnTest.log

It must have errored out as it did not continue processing, nor did I get a dpnTest.log file as expected. If you have any suggestions, let me know.

Andrew
http://www.pointlisse.com/PMA430/
zehd
Offline

Posting Freak

Posts: 5,119
Threads: 249
Joined: Feb 2006
#14
2007-04-29, 09:48 PM
copy "%~dpn.mpg%" "%~dpn.avi%"

or

move "%~dpn.mpg%" "%~dpn.avi%"


Don't forget the quotes
Frank Z
[COLOR="Gray"]
I used to ask 'why?' Now I just reinstall...
[SIZE="1"]______________________________________________
Author: ZTools: ZProcess, MVPServerChecker; UltraXMLTV Enhancer, Renamer, Manager; [/SIZE]
[/COLOR]
pointlisse
Offline

Member

Posts: 74
Threads: 12
Joined: Apr 2007
#15
2007-04-30, 02:53 AM
zehd,

Thank you...
Would that really work? As it's renamed by the time it's in avi format, won't that retain the original name of the file, prior to addepisode?

At this point, I have (examples used for simplicity):

C:\Videos\Show\show_20070429_22302300.mpg
C:\Videos\Show\show - episode.mpg
C:\Videos\Show\show - episode.avi

I want to move the avi file to another directory, something on the order of:

move "%~dpn%"*.avi "C:\Videos\Transcoded\"

Unless I don't understand %~dpn (and I may not), won't your suggestion just rename 'show_20070429_22302300.mpg' to 'show_20070429_22302300.avi' in the same directory?

Andrew
pointlisse
Offline

Member

Posts: 74
Threads: 12
Joined: Apr 2007
#16
2007-04-30, 03:20 AM
Just thinking on it a bit more... I only need the working directory at this point, something similar to the unix command cd or cwd. If I had the working directory (without the filename), I could just wildcard the avi file I already have and copy it anywhere I wanted.
zehd
Offline

Posting Freak

Posts: 5,119
Threads: 249
Joined: Feb 2006
#17
2007-04-30, 05:41 AM
pointlisse Wrote:zehd,

Thank you...
Would that really work? As it's renamed by the time it's in avi format, won't that retain the original name of the file, prior to addepisode?

At this point, I have (examples used for simplicity):

C:\Videos\Show\show_20070429_22302300.mpg
C:\Videos\Show\show - episode.mpg
C:\Videos\Show\show - episode.avi

I want to move the avi file to another directory, something on the order of:

move "%~dpn%"*.avi "C:\Videos\Transcoded\"

Unless I don't understand %~dpn (and I may not), won't your suggestion just rename 'show_20070429_22302300.mpg' to 'show_20070429_22302300.avi' in the same directory?

Andrew

You're not quite catching it. Big Grin Here's your line

Code:
move "%~dpn%"*.avi "C:\Videos\Transcoded\"

And the fixed one...

Code:
move "%~dpn.avi" "C:\Videos\Transcoded\"

Will move the renamed file to the transcoded folder...


Or something like this:

Code:
Comskip "%~dpn.mpg"

call comclean "%~dpn.mpg"

Transcoderthingamjig "%~dpn.mpg" "%~dpn.avi"

move "%~dpn.avi" "C:\Videos\Transcoded\"

I think I know why you're having trouble though. The whole addepisode implementation may not want to work easily in this fashion.
Frank Z
[COLOR="Gray"]
I used to ask 'why?' Now I just reinstall...
[SIZE="1"]______________________________________________
Author: ZTools: ZProcess, MVPServerChecker; UltraXMLTV Enhancer, Renamer, Manager; [/SIZE]
[/COLOR]
pointlisse
Offline

Member

Posts: 74
Threads: 12
Joined: Apr 2007
#18
2007-04-30, 07:57 PM
Thank you again! Yes. the addepisode part is what is giving me grief. I think I found a way for it to work, though:

If I use %~dp1 it will Expand %1 to a drive letter and path only (without the filename), then I can wildcard the new (addepisode renamed) .avi file to the directory of my choosing.

Reference:
http://www.microsoft.com/resources/docum...x?mfr=true

I'll try this tonight and report back... and thanks again for taking the time to reply.

Andrew
zehd
Offline

Posting Freak

Posts: 5,119
Threads: 249
Joined: Feb 2006
#19
2007-04-30, 10:40 PM
pointlisse Wrote:Thank you again! Yes. the addepisode part is what is giving me grief. I think I found a way for it to work, though:

If I use %~dp1 it will Expand %1 to a drive letter and path only (without the filename), then I can wildcard the new (addepisode renamed) .avi file to the directory of my choosing.

Reference:
http://www.microsoft.com/resources/docum...x?mfr=true

I'll try this tonight and report back... and thanks again for taking the time to reply.

Andrew

Or you can try my new rename that I'll be releasing in a couple of days. It will take care of your pathing for you...
Frank Z
[COLOR="Gray"]
I used to ask 'why?' Now I just reinstall...
[SIZE="1"]______________________________________________
Author: ZTools: ZProcess, MVPServerChecker; UltraXMLTV Enhancer, Renamer, Manager; [/SIZE]
[/COLOR]
pointlisse
Offline

Member

Posts: 74
Threads: 12
Joined: Apr 2007
#20
2007-04-30, 10:45 PM
zehd Wrote:Or you can try my new rename that I'll be releasing in a couple of days. It will take care of your pathing for you...

Nice! Can't wait.

Thanks Smile
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

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


Possibly Related Threads…
Thread Author Replies Views Last Post
  Playback-- no mouse!, can't pause,skip, stop via mouse james_dk 2 2,549 2010-06-16, 08:24 PM
Last Post: james_dk
  transcode from file.ts to file.mpeg in parallelproocessing alevideotestservice 4 2,826 2009-12-30, 07:27 PM
Last Post: alevideotestservice
  Transcode w/ Comskip? pduncan67 1 2,114 2009-11-25, 03:59 AM
Last Post: johnsonx42
  Transcode and copy ydekmekji 6 2,585 2009-01-14, 04:43 AM
Last Post: ydekmekji
  Need help to get Transcode to work-simple help me svesnon14 10 3,274 2007-04-25, 01:17 AM
Last Post: svesnon14
  Auto Commercial Removal and Transcode Help (newbie) slacker190 18 5,390 2007-02-19, 01:28 AM
Last Post: homerjr43
  Showburner2/Transcode trouble atmassie 1 1,268 2006-12-10, 11:45 AM
Last Post: atmassie
  Transcode button does not appear in video library Bdunkin 5 1,985 2006-11-21, 06:59 PM
Last Post: Bdunkin
  MyVideos keeps freezing when I "skip" on a DVD GoodGuys 2 2,112 2006-05-01, 09:55 PM
Last Post: GoodGuys
  xdvd transcode problem ultradennis 2 1,802 2006-04-22, 04:20 PM
Last Post: whip

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

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

Linear Mode
Threaded Mode