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) GB-PVR Support (legacy) v
« Previous 1 … 219 220 221 222 223 … 1231 Next »
cannot find file - videoredo

 
  • 0 Vote(s) - 0 Average
cannot find file - videoredo
chancer740
Offline

Junior Member

Posts: 6
Threads: 3
Joined: Sep 2008
#1
2008-09-13, 09:37 PM
I am using a postprocessing.bat file after a recording in gbpvr. I am invoking videoredo with the recommended command line. Problem is that everything works if I specify the file path and file name, but if I use the %~dpn1 variable, I get the error stating that videoredo cannot find the file. It is perplexing me at the moment. Anyone have any ideas?
Again, works great if I run videoredo manually or batch it using the full path and file names. I try to use dpn1 variable anywhere in any of my batches and it crapps out.
showanalyzer works great!
Here is the 2 lines from my postprocessing.bat:

call "C:\Program Files\Dragon Global\ShowAnalyzer\showanalyzer.exe" %1

cscript //nologo "C:\Program Files\VideoReDoPlus\vp.vbs" "%~pn1.VPrj" "%~pn1_Cleaned.mpg" /t1 /q
zehd
Offline

Posting Freak

Posts: 5,119
Threads: 249
Joined: Feb 2006
#2
2008-09-13, 09:50 PM
chancer740 Wrote:I am using a postprocessing.bat file after a recording in gbpvr. I am invoking videoredo with the recommended command line. Problem is that everything works if I specify the file path and file name, but if I use the %~dpn1 variable, I get the error stating that videoredo cannot find the file. It is perplexing me at the moment. Anyone have any ideas?
Again, works great if I run videoredo manually or batch it using the full path and file names. I try to use dpn1 variable anywhere in any of my batches and it crapps out.
showanalyzer works great!
Here is the 2 lines from my postprocessing.bat:

call "C:\Program Files\Dragon Global\ShowAnalyzer\showanalyzer.exe" %1

cscript //nologo "C:\Program Files\VideoReDoPlus\vp.vbs" "%~pn1.VPrj" "%~pn1_Cleaned.mpg" /t1 /q

it doesn't look like you're using %~dpn1 but rather %~pn1
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]
mrgtstr
Offline

Junior Member

Posts: 32
Threads: 4
Joined: Jan 2008
#3
2008-11-12, 12:49 AM
Been searching the forums and this is the same issue I am having except I have the "d" in the path variable and its still not creating the *.Cleaned.mpg file. This is on a XP Pro SP2 machine by the way. Any ideas would be appreciated.

Below I have my PostProcessing.bat file and below it the output it gives me when I run it manually from the gbpvr directory.

REM If you use Showanalyzer, unREM the next line
"C:\Program Files\Dragon Global\ShowAnalyzer\ShowAnalyzer.exe" %1
REM If you use comskip, unREM the next line
REM"C:\Program Files\devnz\gbpvr\comskip.exe" %1
cscript //nologo "C:\Program Files\VideoReDoTVSuite\vp.vbs" "%~dpn1.VPrj" "%~dpn1_Cleaned.mpg" /t1 /e
Rem RENAME the old .mpg file and rename the new one to the old name
move "%~dpn1.mpg" "%~dpn1_original.mpg"
move "%~dpn1_cleaned.mpg" "%~dpn1.mpg"
REM The following lines cleanup the directory.
move "%~dpn1_original.mpg" "G:\TV Shows\Recordings\"
move "%~dpn1.txt" "G:\TV Shows\Recordings\"
move "%~dpn1.log" "G:\TV Shows\Recordings\"
move "%~dpn1.VPrj" "G:\TV Shows\Recordings\"
move "%~dpn1.logo.txt" "G:\TV Shows\Recordings\"
REM RenameRecordings %1 > renamerecordings.log


C:\Program Files\Devnz\GBPVR>"C:\Program Files\Dragon Global\ShowAnalyzer\ShowAn
alyzer.exe"

C:\Program Files\Devnz\GBPVR>cscript //nologo "C:\Program Files\VideoReDoTVSuite
\vp.vbs" ".VPrj" "_Cleaned.mpg" /t1 /q
? Unable to open file/project: .VPrj
zehd
Offline

Posting Freak

Posts: 5,119
Threads: 249
Joined: Feb 2006
#4
2008-11-12, 02:38 AM
mrgtstr Wrote:Been searching the forums and this is the same issue I am having except I have the "d" in the path variable and its still not creating the *.Cleaned.mpg file. This is on a XP Pro SP2 machine by the way. Any ideas would be appreciated.

Below I have my PostProcessing.bat file and below it the output it gives me when I run it manually from the gbpvr directory.

REM If you use Showanalyzer, unREM the next line
"C:\Program Files\Dragon Global\ShowAnalyzer\ShowAnalyzer.exe" %1
REM If you use comskip, unREM the next line
REM"C:\Program Files\devnz\gbpvr\comskip.exe" %1
cscript //nologo "C:\Program Files\VideoReDoTVSuite\vp.vbs" "%~dpn1.VPrj" "%~dpn1_Cleaned.mpg" /t1 /e
Rem RENAME the old .mpg file and rename the new one to the old name
move "%~dpn1.mpg" "%~dpn1_original.mpg"
move "%~dpn1_cleaned.mpg" "%~dpn1.mpg"
REM The following lines cleanup the directory.
move "%~dpn1_original.mpg" "G:\TV Shows\Recordings\"
move "%~dpn1.txt" "G:\TV Shows\Recordings\"
move "%~dpn1.log" "G:\TV Shows\Recordings\"
move "%~dpn1.VPrj" "G:\TV Shows\Recordings\"
move "%~dpn1.logo.txt" "G:\TV Shows\Recordings\"
REM RenameRecordings %1 > renamerecordings.log


C:\Program Files\Devnz\GBPVR>"C:\Program Files\Dragon Global\ShowAnalyzer\ShowAn
alyzer.exe"

C:\Program Files\Devnz\GBPVR>cscript //nologo "C:\Program Files\VideoReDoTVSuite
\vp.vbs" ".VPrj" "_Cleaned.mpg" /t1 /q
? Unable to open file/project: .VPrj

This is a hunch... Do you have the GB-PVR Recording service set to 'interact with desktop' or not?
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]
mrgtstr
Offline

Junior Member

Posts: 32
Threads: 4
Joined: Jan 2008
#5
2008-11-12, 02:49 AM (This post was last modified: 2008-11-12, 03:06 AM by mrgtstr.)
zehd Wrote:This is a hunch... Do you have the GB-PVR Recording service set to 'interact with desktop' or not?

Thanks for the reply....No, is it supposed to be?
zehd
Offline

Posting Freak

Posts: 5,119
Threads: 249
Joined: Feb 2006
#6
2008-11-12, 04:11 AM
mrgtstr Wrote:Thanks for the reply....No, is it supposed to be?

My guess was based on similar post-processing tools including my own, that require interacting with the desktop. I am suspecting VideoRedo requires it.
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]
mrgtstr
Offline

Junior Member

Posts: 32
Threads: 4
Joined: Jan 2008
#7
2008-11-14, 01:15 AM
So far still no dice and appreciate your help.....Any other ideas besides uninstalling and reinstalling? To me it seems like its not reading the "%~dpn1" variable for whatever reason.
mmatheny
Offline

Senior Member

Posts: 732
Threads: 113
Joined: May 2006
#8
2008-11-14, 01:51 AM
Never mind - just looked at the command line again, and what I suggested is not the issue (enclosing the variable in quotes)!
Mike

PVRX2 1.3.11
Community Skin 3.2.4
Community Skin Plugin 3.2.2
Win7 RTM 7600 x32
Comcast Houston (cable co)
ECS 7050M-M2 V2
AMD Phenom 9550 QuadCore
4G RAM
BFG GeForce 9600GT 512mb
160g SATA II (OS)
500g SATA II (DATA)
LG GGC-H20LK Combo drive
Hauppauge WinTV HVR-2250
JVC RX-9010 RX
Samsung PN50A550
reboot
Offline

Posting Freak

Posts: 1,426
Threads: 89
Joined: Mar 2005
#9
2008-11-14, 03:30 PM
For Chancer740, your line reads
Code:
cscript //nologo "C:\Program Files\VideoReDoPlus\vp.vbs" "%~pn1.VPrj" "%~pn1_Cleaned.mpg" /t1 /q
It should read
Code:
cscript //nologo "C:\Program Files\VideoReDoPlus\vp.vbs" "%~dpn1.VPrj" "%~dpn1_Cleaned.mpg" /t1 /q
Notice the wildcard name now includes the "d".

For mrgtstr, your line reads
Code:
C:\Program Files\Devnz\GBPVR>cscript //nologo "C:\Program Files\VideoReDoTVSuite
\vp.vbs" ".VPrj" "_Cleaned.mpg" /t1 /q
First, do you have the file "vp.vbs" in the gbpvr folder, or is it in the Videoredo folder?
Mine looks like this
Code:
cscript //nologo "C:\Program Files\VideoReDoPlus\vp.vbs" "%~dpn1.VPrj" "%~dpn1_Cleaned.mpg" /t1 /q
calling videored and the vp.vbs from the videoredo folder.
Notice also, that your wildcard filename is ONLY showing the suffix ".VPrj" instead of ""%~dpn1.VPrj" No wonder it doesn't work Big Grin
You can never have enough tuners!
Pentium Quad / 4Gb Dual Channel RAM / XPSP3 / 2 x PVR-500, PVR-250 / GB-PVR
mrgtstr
Offline

Junior Member

Posts: 32
Threads: 4
Joined: Jan 2008
#10
2008-11-14, 09:02 PM
Thanks for the reply reboot....The vb script is in the Videoredo folder and the batch file is in the gbpvr folder. I manually started the batch file is the reason why its showing the gbpvr path. Don't know whether that helps or not?
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (3): 1 2 3 Next »


Possibly Related Threads…
Thread Author Replies Views Last Post
  file types of recorded TV paul1 3 3,745 2012-09-30, 05:20 PM
Last Post: sub
  tunningAssistant: Failed to find Crossbar Zack63 4 2,980 2010-10-20, 03:36 PM
Last Post: Zack63
  No Data In the Recorded File zb1 5 2,326 2010-08-24, 01:08 AM
Last Post: zb1
  Path to file being recorded. brianj 5 2,393 2010-08-08, 10:58 PM
Last Post: brianj
  Can't find channels flodog 1 2,107 2010-08-07, 02:28 PM
Last Post: mvallevand
  error: failure playing back file yonu 4 2,095 2010-07-12, 12:52 AM
Last Post: yonu
  UK Freesat Scan.cache File jeffers 3 2,112 2010-05-25, 10:34 PM
Last Post: jeffers
  3 AC3Filter instances when playing back a still recording TS file? jksmurf 3 1,963 2010-05-17, 12:30 AM
Last Post: jksmurf
  Recording stops at 4gb file size experiencebliss 5 2,449 2010-05-04, 02:54 AM
Last Post: pBS
  Hauppage HVR-950q, no file created when recording, no pause. donbrowne 5 2,081 2010-04-08, 04:03 PM
Last Post: sub

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

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

Linear Mode
Threaded Mode