NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Developers v
« Previous 1 … 39 40 41 42 43 … 93 Next »
BurnDVD plugin (a preview, supports PAL only)

 
  • 0 Vote(s) - 0 Average
BurnDVD plugin (a preview, supports PAL only)
tmrt
Offline

Member

Posts: 188
Threads: 25
Joined: May 2007
#11
2007-08-01, 07:11 PM
pBS Wrote:...tho the menus probably won't look right..[would only need a slight mod of the plugin for menu placement]
and the comskip 2 chapters is easy..[and very usefull feature]
interested?

Most of the menu dimensions are defined in skin.xml already. With only a few modifications all PAL dependency can be moved into skin.xml. I just have not expected that anyone would miss NTSC since Showburner does its job as it should.

I do not have comskip installed and I wanted to have something simple working as fast as possible. I have seen in Showburner that it is fairly simple.
kram_0
Offline

Member

Posts: 57
Threads: 4
Joined: Apr 2006
#12
2007-08-02, 01:27 PM
tmrt Wrote:In principle it should, but I never tried. I am not very familiar with the way dlls are managed in NET 2.0. It might need recompilation with references set to the 99.12 dlls.

Thanks tmrt.
If that's an option I would love the ability to generate PAL DVDs. I'm using a PVR350 output so I haven't upgraded - I'd need a better video card.

Has anyone else tried this plugin with 99.12?
-=TJ=-Stefan
Offline

Member

Posts: 137
Threads: 10
Joined: Oct 2006
#13
2007-08-02, 02:24 PM
Sound like a very good program I could use. Is it possible to initiate the burn from a MVP? Ofcourse when there is a DVD burner in the server and an emtpy DVD.

I ask this because I have a Windows 2003 server with GBPVR on it and 2 MVPs. All GBPVR actions I do with the MVPs.
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#14
2007-08-03, 02:55 AM (This post was last modified: 2007-08-03, 05:30 PM by pBS.)
tmrt Wrote:Most of the menu dimensions are defined in skin.xml already. With only a few modifications all PAL depndency can be moved into skin.xml. I just have not expected that anyone would miss NTSC since Showburner does its job as it should.

I do not have comskip installed and I wanted to have something simple working as fast as possible. I have seen in Showburner that it is fairly simple.

yea, that would be great..[stick the pal/ntsc stuff in skin] i noticed only a few in the code itself so shouldn't be much to shift..

reason i wanted to do it as native plugin is it looks much nicer, can see the files waiting to get burned also..Smile
and i noticed some references to say.exe in there...hehe
[the extent of my programming knowledge..only real thing i've written..lol]

also, i figured out how to pipe the output straight to cdrecord.exe to start burning as soon as you hit the button..Smile but more testing needed..

oh and ffmpeg can make files dvd compatible without the split/remuxing, all in one step...cuts a lot of time and temp files..
i pipe mpg->ffmpeg->dvdauthor all in one step, tho curious if your method is any faster....

i'll have to play with it some more to check out the workings...
i haven't had time to recompile, but it should be really easy to mod for a quick ntsc test..next couple days...

TJ: Is it possible to initiate the burn from a MVP? Yes Big Grin
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
tmrt
Offline

Member

Posts: 188
Threads: 25
Joined: May 2007
#15
2007-08-03, 06:17 PM
pBS Wrote:say.exe in there...hehe
[the extent of my programming knowledge..only real thing i've written..lol]

I used say.exe for a while to indicate the end of burning, but at some point it started to crash on my laptop. I did not understand why so I commented it out.

It would be nice to have some kind of message at the end of burning especially when one initiates burning over MVP. As I understand say.exe is not capable of that. I do not know how to output a mesage to gbpvr when the plugin is not active.


pBS Wrote:i pipe mpg->ffmpeg->dvdauthor all in one step, tho curious if your method is any faster....

I tried this, but with my mpeg files generated by ATI-Theater-550 based card I could not figure how to force ffmpeg to insert NAV packets into the stream.
tmrt
Offline

Member

Posts: 188
Threads: 25
Joined: May 2007
#16
2007-08-03, 10:54 PM (This post was last modified: 2007-08-13, 01:16 PM by tmrt.)
I modified the code to do both, PAL and NTSC. NTSC is not really tested.

http://gbpvr.com/pmwiki/pmwiki.php/Plugin/BurnDVD

I still can not upload the instalation file to the forum. :confused:
pastro
Offline

Posting Freak

Posts: 1,885
Threads: 128
Joined: Jul 2006
#17
2007-08-04, 10:09 PM
tmrt Wrote:I modified the code to do both, PAL and NTSC. NTSC is not really tested.

http://complex.ijs.si/~tmertelj/burndvdboth.zip

I still can not upload the instalation file to the forum. :confused:

Cool. I use showburner which works very well, but it will be great to have a full GUI.
GBpvr PC: Intel Celeron 1.8 Ghz. 768 Mb WinXp Home Sp2
Video: Diamond 128 Mb 9550
Capture Cards: PVR-150 & PVR-150 MCE w/fm + 2x MVP
Author of: BurnDVDX2 and Skiptool
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#18
2007-08-06, 01:36 AM
Quote:I tried this, but with my mpeg files generated by ATI-Theater-550 based card I could not figure how to force ffmpeg to insert NAV packets into the stream.
mostly it's just about using -f dvd for output format..
here's my full line..
Code:
"%ffmpeg%" %test% -y -i "%~1" -sc_threshold 1000000000  -flags +cgop+ildct -target ntsc-dvd -f dvd -sameq -vcodec copy -acodec copy  - 2>NUL|dvdauthor.exe -o "%dvdtemp%" -t -c %chapters% -i post="call vmgm menu;"  -f -
of course adjust for pal..
it really cuts a lot of time and temp files from the already long process..

btw,did you compile your dvdauthor? can you get cmdline working in dvdauthor?
[i had to use old one]
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
tmrt
Offline

Member

Posts: 188
Threads: 25
Joined: May 2007
#19
2007-08-06, 11:24 AM
pBS Wrote:
Code:
"%ffmpeg%" %test% -y -i "%~1" -sc_threshold 1000000000  -flags +cgop+ildct -target ntsc-dvd -f dvd -sameq -vcodec copy -acodec copy  - 2>NUL|dvdauthor.exe -o "%dvdtemp%" -t -c %chapters% -i post="call vmgm menu;"  -f -

I tried this in the first attempt while playing with ShowBurner, but it did not work.

pBS Wrote:btw,did you compile your dvdauthor? can you get cmdline working in dvdauthor?
[i had to use old one]

No. I use binaries from DVDAuthorGui and xml files to tell dvdauthor what to do.
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#20
2007-08-07, 03:26 PM (This post was last modified: 2007-08-07, 03:38 PM by pBS.)
it's working...and seems much easier on the cpu..Smile
but not all that much faster cuz you're doing a similar thing the hard way...
i never thought of adding the files manually then using the xml only for the menus..genius! Big Grin

this is the current ntsc line i'm using:
Code:
start /b  cmd  /s /c ..\ffmpeg\ffmpeg -y -i "%~1" -sc_threshold 1000000000  -flags +cgop+ildct -f dvd  -vcodec copy -acodec copy  -|dvdauthor.exe -o "%dvdtemp%" -t -c %chapters% -i post="call vmgm menu;"  -v ntsc+352xfull  -f -

but i'm having problems with the menu highlighting..it isn't working for me..[even with stock adddvdntsc.cmd]
the regions are active and clickable, but highlighting doesn't move and keys aren't useable..

i'm working on figuring out why..so far the spumux just isn't working right..
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

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


Possibly Related Threads…
Thread Author Replies Views Last Post
  PIP plugin for Kodi sgilani 2 2,882 2022-10-17, 12:44 AM
Last Post: sgilani
  New Systems Plugin kirschey 10 3,390 2020-11-14, 08:01 PM
Last Post: sub
  VIdeo playback from plugin mvallevand 5 3,489 2015-08-06, 10:43 PM
Last Post: sub
  Attention Sub: Open TV / Custom Data Grabber plugin Benoire 2 2,920 2014-11-14, 02:05 AM
Last Post: Benoire
  API docs to help with plugin development? McBainUK 3 2,786 2013-06-08, 06:14 PM
Last Post: sub
  Refreshing TV Guide Data (after System plugin EPG update) imilne 13 6,137 2013-03-24, 08:03 PM
Last Post: imilne
  sabnzbd plugin to show processed files Wakalaka 1 1,963 2013-03-12, 06:48 AM
Last Post: psycik
  Problem with preview image for Pending Recordings Northpole 2 1,996 2012-08-14, 02:56 AM
Last Post: Northpole
  Plugin problems with started from the command line mvallevand 11 5,019 2012-08-12, 07:56 PM
Last Post: sub
  Get NextPVR data directory from outside a plugin McBainUK 3 2,257 2012-02-11, 05:42 PM
Last Post: mvallevand

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

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

Linear Mode
Threaded Mode