"Jan Grewe" wrote:
> Sorry, i don't have a .freevo, only a .mmpython!
> I deleted that one, but it still gives me the error when inserting a disc 

That's strange. Open src/util/mediainfo.py and search for:

    if os.path.isfile(cachefile):
        metainfo = util.read_pickle(cachefile)
    else:
        metainfo = {}

    if mmdata.mime == 'unknown/unknown' and not metainfo.has_key('disc_num_video'):


replace it with some debug:

    print cachefile
    if os.path.isfile(cachefile):
        print 'yes'
        metainfo = util.read_pickle(cachefile)
    else:
        print 'no'
        metainfo = {}

    print metainfo
    if mmdata.mime == 'unknown/unknown' and not metainfo.has_key('disc_num_video'):

and send me the output.


Dischi

-- 
Press any key to continue or any other key to quit...


-------------------------------------------------------
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g. 
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click
_______________________________________________
Freevo-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-devel

Reply via email to