On Jan 30, 2008 6:29 PM, Adam Charrett <[EMAIL PROTECTED]> wrote:

> On Wed, January 30, 2008 4:58 pm, Jio wrote:
> > With web based you mean through webserver? I want to make this plugin
> > integrated directly in the freevo UI so I can burn my dvds directly with
> a
> > remote and nothing else.
> >
> > P.S.: there is a way to make a checkbox?
>
> Yes, you need to use a menu, have a look  at the recordings manager
> configuration screen 'Reverse sort' menu item for an idea on how to do
> this.
> This approach is probably better than the more MS Windows approach you
> mentioned before as on SD TV screens there really isn't enough screen
> space.
>
> Adam


Ok, thanks I've a fullHD and didn't thinked about that problem ;)


>
>
> > On Jan 30, 2008 5:44 PM, don locke <[EMAIL PROTECTED]> wrote:
> >
> >> Hey Jio
> >>
> >> I've started a webpage based plugin to do something like this.  But it
> >> still needs lots of work.
> >>
> >> Don.
>

Maybe we can share a base python class to actually burn the dvd/cd something
like:

class BurnMedia():
    def __init__(self, parent):
        # useful info returned by cdrecord -minfo es: free size
        self.media_info = []

        # list of file to actually burn
        self.file_queue = []

        # total size of the queue list
        self.queue_size = []

        # type of burn audio, data, video, etc.
        self.burn_type = 'data'

        # delete file after burn
        self.deleteafterburn = 0

        # verify after burn
        self.verify_burn = 0

        # background burn or not
        self.backgroundBurn = 0

    def burn():
         # burn!

    def append(filePos):
         # append a file to the queue to burn, return error if
self.queue_size exceed self.mediaInfo[freeSpace]

    def remove(fileId):
         # remove file from queue

    def getMediaInfo(fileId):
         # retrive useful info from cdrecord -minfo

I miss something?
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Freevo-devel mailing list
Freevo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-devel

Reply via email to