NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Information Community Announcements v
« Previous 1 … 17 18 19 20 21 … 56 Next »
New Tool: ShowBurner DVD Burning [with menus]

 
  • 0 Vote(s) - 0 Average
New Tool: ShowBurner DVD Burning [with menus]
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#231
2007-01-18, 06:49 PM
not sure where dvdburn.bat is from as showburner only uses burndvd.bat and yes,it's in the \third party\ folder...
as far as i know there is noone using dvdburn.bat unless it's XRecord or Video Archive..[which i'm pretty sure they converted to using dll's instead of a batch]
prolly just a typo...Smile
EDIT:
i'm pretty sure dvdburn.bat is for recordings2 and it only burns the files if they exist already...
my program does all that for you in one step so no need for it unless you've already ripped your dvd's to a dir..
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
stu8080
Offline

Senior Member

Posts: 639
Threads: 52
Joined: Aug 2004
#232
2007-01-18, 06:52 PM
Ive tried this recently, but was expecting to have some problems in that i use PAL rather than NTSC.

Ive found however that the DVD is produced and plays perfectly on my very cheap DVD player. I'm now concerned that these DVD's wont be playable elsewhere and i'm just lucky that either my DVD player or TV can accept NTSC signals??

Wherer exactly should problems arise when playing NTSC disks in a PAL country? (ie, do i need to test lots of TV's, lots of DVD players, or both?)
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#233
2007-01-18, 07:00 PM
yes, probably will have some problems on other pal players, especially older ones..
the only difference between the 2 are framerate and image size...
NTSC is 480 or 240 pixels high at 29.97 fps...
PAL is 576 or 288 high at 25 fps...
you can adjust the current batch file to reflect these params and it willwork fine on pal...
odds are you've got a cheap multi-standard machine that will play either...as most will thesedays...but older players that are strict in the standard will not play it unless they have dual ability...
on computer they all play fine everywhere..Smile
[so hard to test true pal unless have pal only tv]
i bought a dvd player for 17$ that plays both on either kind of tv..Big Grin

the relevant bits to edit are the ffmpeg lines and the menus....and one in adddvd.bat in showburner dir..
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
rbelisle
Offline

Member

Posts: 203
Threads: 35
Joined: Apr 2006
#234
2007-01-18, 07:18 PM
I know I'm sounding like a broken record, but is there any way to troubleshoot what might be causing my problem with the
[PG-13] was unexpected at this time. detailed in http://forums.gbpvr.com/showpost.php?p=1...tcount=227?
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#235
2007-01-18, 07:35 PM
hmmm,it's probably the length of the lines...pretty long there...
wasn't really designed to display that much info...[not sure it would even fit on the screen]
hmm...try skipping the descriptions, also, look into the actual text it's grabbing for that show, ar there any other weird characters in it?
[view it's description in GBPVR]
i can replace them if i know what it's choking on before processing..
i suspect more {} or something else with all that extended data...
look for the lines:
if exist info.txt snr info.txt ( [
and add new ones with:
if exist info.txt snr info.txt { [
if exist info.txt snr info.txt } ]

just in case its another bad bracket...
otherwise it's probably something else...
let me know..
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
stu8080
Offline

Senior Member

Posts: 639
Threads: 52
Joined: Aug 2004
#236
2007-01-18, 11:51 PM
Thanks pBS - Given the price of your average DVD player these days (£30) i wont worry too much! I dont know anyone these days who has a DVD player that is more than a few ears old anyway!
rbelisle
Offline

Member

Posts: 203
Threads: 35
Joined: Apr 2006
#237
2007-01-19, 07:20 PM (This post was last modified: 2007-01-19, 07:29 PM by rbelisle.)
Took all the 'echo suppression' off in the batch file and figured out that it is failing on the following line when executed. It looks like it is a filename parsing, nothing to do with the description.

C:\Program Files\devnz\gbpvr\showburner>for /f "usebackq tokens=1,* delims=_{}" %t in ('The Pink Panther (2006) [PG] [2]_20070114-05150700') do (echo %t)
[PG] was unexpected at this time.

It seems to not like the bracket at the end of 2006) because if I take out the ) then I get an error that it can't find the file. So, I'm thinking that it thinks the ) at the end of 2006 is being interpreted as the one at the end of the filename.

Seems if you change the batch file and add double quotes around the filename, everything works fine! Below is the section I changed.

if exist info.txt snr info.txt ' `
if exist info.txt snr info.txt { [
if exist info.txt snr info.txt } ]
if exist info.txt snr info.txt ) ]
if exist info.txt snr info.txt ( [
if exist info.txt snr info.txt ; .
if exist info.txt snr info.txt "&" -n-
%paus%
if exist info.txt for /f "tokens=*" %%z in (info.txt) do (call :describe "%%z")
%paus%
rem ***ray change below***
for /f "usebackq tokens=1,* delims=_{}" %%t in ("'%~n1'") do (set titl=%%t)
%paus%

You will see that around the '%~n1', I have put the double quotes. Not sure if that would break things for anyone else, but if not, you could incorporate into the batch file so that others don't run into the same problem.
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#238
2007-01-19, 07:41 PM
ahhh,good catch...will have to add that...that's why i put the usebackq part in there but guess i forgot to add the quotes...
the extended show attributes give me fits with all the info and special characters...but i have i-xmltv on one machine so didn't think there was a problem..but i don't rename my files either...Smile
glad ya got it worked out...
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
stu8080
Offline

Senior Member

Posts: 639
Threads: 52
Joined: Aug 2004
#239
2007-01-19, 11:57 PM
pBS, ive just installed this on my main machine (previous was virtual clone for testing stuff), on the clone the only problem i had was ImgBurn didnt pick up the files and burn them autiomatically (i assumed it was down to VMware though and just burned the video_TS folder manually giving me a perfect DVD)

Now i try on my main machine i notice there is no .IFO file in the VIDEO_TS folder and ImgBurn picks up on this and asks me if i want to continue anyway.

Is a lack of .IFO file normal?
Where would i need to look to spot the problem if so?
If its not a problem how can i force ImgBurn to override this prompt?
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#240
2007-01-20, 07:15 AM
yea, need those .ifo's cuz that's the menu's really...
[actually just info about the streams inside the .vob]
the menus are the video_ts.*
you can click on the VIDEO_TS.IFO to play a dvd from start..
to check where problem is, run from command line, and remove @echo off at beginning [or 'rem' it out]
you'll be able to see more and scroll back some...
or run it with "burndvd.bat >>burndvd.log" to have it save all that to a log file to read later..
sounds like menu creation or something in the dvdauthor part if no ifo's at all..
as it imports the mpgs, it converts to a .vob and .ifo of same name...
then the menu gets created after making the video_ts.ifo files...
did you re-install on the host machine? possibly it couldn't access a folder or something...[i believe they run with same user rights as gbpvr]
let me know what the log has in it..we'll go from there..
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (34): « Previous 1 … 22 23 24 25 26 … 34 Next »
Jump to page 


Possibly Related Threads…
Thread Author Replies Views Last Post
  External tool: Transfer Season Record schedules from GBPVR to NPVR kendrak24 37 21,374 2013-04-11, 05:58 AM
Last Post: kendrak24
  SubMenu - A main menu replacement supporting sub menus imilne 47 17,813 2012-01-15, 12:41 AM
Last Post: Mattyb3806
  HDHomeRun Channel Mapping Tool beta whurlston 13 10,823 2010-04-25, 08:48 PM
Last Post: bienson
  BDA Channel Migration Tool JavaWiz 28 11,373 2009-09-16, 02:00 PM
Last Post: JavaWiz
  Configuration tool for remote control athomas 0 1,451 2008-12-04, 12:45 PM
Last Post: athomas
  Sky Channel Sync Tool Version 1.0.2 systemshark 0 1,202 2008-08-17, 07:26 AM
Last Post: systemshark
  Sky Channel Sync Tool systemshark 2 1,493 2007-11-05, 01:20 PM
Last Post: systemshark
  File Renaming Tool: ZRename zehd 0 1,138 2007-05-01, 05:23 AM
Last Post: zehd
  Features for Channel Logo Tool V4.0 systemshark 5 2,923 2007-04-19, 09:20 PM
Last Post: allsighs
  Channel Logo Tool V3 systemshark 50 15,246 2007-04-14, 08:43 PM
Last Post: systemshark

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

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

Linear Mode
Threaded Mode