NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Information Community Announcements v
« Previous 1 … 3 4 5 6 7 … 56 Next »
SuperSimpleArchiver

 
  • 0 Vote(s) - 0 Average
SuperSimpleArchiver
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#51
2008-06-02, 11:06 PM
hmm, just as a test, try .txt at ext. part....
maybe if it doesn't recognize the extension,it won't try to transcode and let batch run...
and the batch file is like 'exe=reloc.bat' in profile?

if there's no logs, it's never getting run...
maybe a hardcoded thing with dvrms...Sad
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
stustunz
Offline

Posting Freak

Posts: 5,111
Threads: 112
Joined: Oct 2006
#52
2008-06-03, 12:48 AM
thank you wannabepvr someone else with the same problem
i never got it sorted and gave up using it as half my recordings are dvr-ms

instead i just move bulk recording with explorer then use mpeg import

would prefer not to have to do it this way as pbs tool is great just wont do dvr-ms
i suspect its something to do with dvr-ms files as they cant be streamed either
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#53
2008-06-03, 12:57 AM (This post was last modified: 2008-06-03, 01:29 AM by pBS.)
i think it's hardcoded to transcode anytime it sees a dvrms filename...
[most softs can't do dvrms]

so maybe an item for the wishlist?

Sub, any insight to why it won't run batch file on dvrms?

stu, does it work for mpg on your machine?
if so, it's probably hardcoded for dvrms...

if you look at the batch, it's really simple so nothing in there could have freaked out that bad...Smile [he says with a wink]
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
wannabepvr
Offline

Senior Member

Posts: 635
Threads: 131
Joined: Sep 2005
#54
2008-06-03, 01:06 AM
stustunz Wrote:i suspect its something to do with dvr-ms files as they cant be streamed either

I wondered why that never worked either !
Core2-E2180, 1G RAM, 1Gb-5450 Silent, 2Tb +300g HDDs.
Three tuners: [SIZE=2][SIZE=1]Twinhan DVB-T x 1, Hauppauge Nova 500T (dual)
[/SIZE][/SIZE]
DTB Digital SD + HD content (PAL-MPEG2-AC3).
Custom case made very quiet. Zalman CPU cooler.
Sits in rack with other HiFi.

ParaLED to show tuner activity.

Display: 42" 1920x1080p Panasonic Plasma

1x wired MVP
1x PC client
[URL="http://web.aanet.com.au/media/"]
[/URL]
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#55
2008-06-03, 01:21 AM
actually that's unrelated...dvrms stats [length,current pos] can only be read from machine they reside on, so why you can't stream them...

but they can be copied just like any other file...just can't do it while they're being recorded..[just like any other file]
so it's not an inherant limitation...

try it from command line and i bet it works fine..Big Grin
from gbpvr dir: "third party\reloc.bat" "x:\recpath\dir\file.dvrms" "x:\path\recpath\"
if that works it's definitely hardcoded..
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
stustunz
Offline

Posting Freak

Posts: 5,111
Threads: 112
Joined: Oct 2006
#56
2008-06-03, 01:46 AM
yes mpeg transfer fine

sorry for been dumb but what am i meant to type i n the command line exactly
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#57
2008-06-03, 01:52 AM
for cmd line usage:
1.make current dir gbpvr\
2.run:
"third party\reloc.bat" "z:\path\file.dvrms" "x:\path\to\recordingsroot\"

it must be run this way as that's how gbpvr runs batches,from gbpvr even tho they reside in gbpvr\third party\

first parameter is the source file you wish to move, second is the path to the destination recordings root dir...[don't include show-subdir ]
so if yuo want it to land in "e:\mpg\house\house_112323_1210233.dvrms", then you'd use "e:\mpg\" as destination...batch will re-create \house\ subdir..
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
wannabepvr
Offline

Senior Member

Posts: 635
Threads: 131
Joined: Sep 2005
#58
2008-06-03, 06:40 AM
These are the lines in my config.xml

[HTML]<CustomFFmpegConversions>
<Conversion name="Archive to 300g drive" exe="reloc.bat" cmd=" {SOURCE_FILE} K:\TV\media-recordings\ " targetExtension=".mov" />
<Conversion name="move to music videos" exe="reloc.bat" cmd=" {SOURCE_FILE} S:\music_video\ " targetExtension=".mov" />
<Conversion name="XviD" cmd="-y -i {SOURCE_FILE} -f avi -ab 224 -ac 2 -acodec mp3 -deinterlace -vcodec xvid -qscale 5 -vtag XVID {DEST_FILE}" targetExtension=".avi" />
<Conversion name="DivX" cmd="-y -i {SOURCE_FILE} -f avi -ab 224 -ac 2 -acodec mp3 -vcodec mpeg4 -b 1000k -vtag DIVX {DEST_FILE}" targetExtension=".avi" />
<Conversion name="Video Ipod" cmd="-y -i {SOURCE_FILE} -title {TITLE_SUBTITLE} -f mp4 -vcodec mpeg4 -s 320x240 -r 15 {DEST_FILE}" targetExtension=".mp4" />
<Conversion name="Sony PSP" cmd="-y -i {SOURCE_FILE} -title {TITLE_SUBTITLE} -f psp -r 29.97 -s 368x208 -b 768k -ar 24000 -ab 32 {DEST_FILE}" targetExtension=".mp4" />
<Conversion name="Mobile .3GP" cmd="-y -i {SOURCE_FILE} -acodec aac -vcodec mpeg4 -s qcif -aspect 4:3 {DEST_FILE}" targetExtension=".3gp" />
<Conversion name="WMV-1200kb/s" cmd="-y -i {SOURCE_FILE} -vcodec wmv2 -b 1200k {DEST_FILE}" targetExtension=".wmv" />
<Conversion name="WMV-700kb/s" cmd="-y -i {SOURCE_FILE} -vcodec wmv2 -b 700k {DEST_FILE}" targetExtension=".wmv" />
</CustomFFmpegConversions>[/HTML]


When I use this command from the gbpvr directory

[HTML]".\third party\reloc.bat" "S:\new_recordings\Australia Land Of Parrots\Australia Land Of Parrots_20080504_19302025.dvr-ms" "K:\TV\media-recordings\"[/HTML]

I get this commentary

[HTML]C:\Program Files\devnz\gbpvr>for %f in ("S:\new_recordings\Australia Land Of Par
rots\Australia Land Of Parrots_20080504_19302025.dvr-ms" "S:\new_recordings\Aust
ralia Land Of Parrots\Australia Land Of Parrots_20080504_19302025.edl" "S:\new_r
ecordings\Australia Land Of Parrots\Australia Land Of Parrots_20080504_19302025.
txt" "S:\new_recordings\Australia Land Of Parrots\Australia Land Of Parrots_2008
0504_19302025.srt") do (if exist %f copy /Y %f "K:\TV\media-recordings\Australia
Land Of Parrots\" 1>>"third party\archiver.log" )

C:\Program Files\devnz\gbpvr>(if exist "S:\new_recordings\Australia Land Of Parr
ots\Australia Land Of Parrots_20080504_19302025.dvr-ms" copy /Y "S:\new_recordin
gs\Australia Land Of Parrots\Australia Land Of Parrots_20080504_19302025.dvr-ms"
"K:\TV\media-recordings\Australia Land Of Parrots\" 1>>"third party\archiver.l
og" )

C:\Program Files\devnz\gbpvr>(if exist "S:\new_recordings\Australia Land Of Parr
ots\Australia Land Of Parrots_20080504_19302025.edl" copy /Y "S:\new_recordings\
Australia Land Of Parrots\Australia Land Of Parrots_20080504_19302025.edl" "K:\T
V\media-recordings\Australia Land Of Parrots\" 1>>"third party\archiver.log" )


C:\Program Files\devnz\gbpvr>(if exist "S:\new_recordings\Australia Land Of Parr
ots\Australia Land Of Parrots_20080504_19302025.txt" copy /Y "S:\new_recordings\
Australia Land Of Parrots\Australia Land Of Parrots_20080504_19302025.txt" "K:\T
V\media-recordings\Australia Land Of Parrots\" 1>>"third party\archiver.log" )


C:\Program Files\devnz\gbpvr>(if exist "S:\new_recordings\Australia Land Of Parr
ots\Australia Land Of Parrots_20080504_19302025.srt" copy /Y "S:\new_recordings\
Australia Land Of Parrots\Australia Land Of Parrots_20080504_19302025.srt" "K:\T
V\media-recordings\Australia Land Of Parrots\" 1>>"third party\archiver.log" )


C:\Program Files\devnz\gbpvr>echo off
Done.

C:\Program Files\devnz\gbpvr>[/HTML]

And this message in the log file



[HTML]*********
original - S:\new_recordings\Australia Land Of Parrots\Australia Land Of Parrots_20080504_19302025.dvr-ms
Subdir is Australia Land Of Parrots\
sqlite Found oid - 320
1 file(s) copied.
1 file(s) copied.
1 file(s) copied.
copy errors = 0
sqlite update successful
Deleted empty source dir..
************************************************************** [/HTML]


It worked perfectly. So unless my confix.xml contains an error then I think we are looking at a problem with DVR-MS files.

Edit: obviously no mpg transcode occurred, this only performed the copy per you batch file.

Also, I did try to use the transcode option in the x-temp.mpg and there was an error that said it was not in the database. True. I think this also support the dvr-ms theory.
Core2-E2180, 1G RAM, 1Gb-5450 Silent, 2Tb +300g HDDs.
Three tuners: [SIZE=2][SIZE=1]Twinhan DVB-T x 1, Hauppauge Nova 500T (dual)
[/SIZE][/SIZE]
DTB Digital SD + HD content (PAL-MPEG2-AC3).
Custom case made very quiet. Zalman CPU cooler.
Sits in rack with other HiFi.

ParaLED to show tuner activity.

Display: 42" 1920x1080p Panasonic Plasma

1x wired MVP
1x PC client
[URL="http://web.aanet.com.au/media/"]
[/URL]
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#59
2008-06-03, 06:49 AM
aha! need quotes around those destinations...on both...Smile
and in config, it'll get changed to &quot; so you can just put that if you want..
like:
&quot;K:\TV\media-recordings\&quot;
which looks like to config: "K:\TV\media-recordings\" and that's what it'll spit out to batch file...
it was probably exiting due to destination not found...
let me know if that works for you..
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
wannabepvr
Offline

Senior Member

Posts: 635
Threads: 131
Joined: Sep 2005
#60
2008-06-04, 06:18 AM
Confused now:

I have [html]cmd=" {SOURCE_FILE} K:\TV\media-recordings\ "[/html] with spaces between the quotes and the text.

Your help file give the format as:

[html]cmd=" {SOURCE_FILE} \\home1\g\mpg\ "[/html]Is this not correct?
Core2-E2180, 1G RAM, 1Gb-5450 Silent, 2Tb +300g HDDs.
Three tuners: [SIZE=2][SIZE=1]Twinhan DVB-T x 1, Hauppauge Nova 500T (dual)
[/SIZE][/SIZE]
DTB Digital SD + HD content (PAL-MPEG2-AC3).
Custom case made very quiet. Zalman CPU cooler.
Sits in rack with other HiFi.

ParaLED to show tuner activity.

Display: 42" 1920x1080p Panasonic Plasma

1x wired MVP
1x PC client
[URL="http://web.aanet.com.au/media/"]
[/URL]
« Next Oldest | Next Newest »

Users browsing this thread: 3 Guest(s)

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


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

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

Linear Mode
Threaded Mode