Tom Weichmann wrote:
> On Tuesday 06 March 2007 01:32 am, Duncan Webb wrote:
>> On Tue, 6 March, 2007 7:11 am, Tom Weichmann wrote:
>>> Hello,
>>>
>>>
>>> Now that I have solved my tv_grab problems, I am trying to get station
>>> logos into my guide. See the error I received below. Anyone have any
>>> ideas?
>>>
>>> [EMAIL PROTECTED]:~> freevo makelogos
>>> WARNING: duplicate plugin activation, ignoring:
>>> <idlebar None None>
>>>
>>>
>>> WARNING: duplicate plugin activation, ignoring:
>>> <idlebar.clock None None>
>> You can remove idlebar and idlebar.clock from your local_conf.py
>>
>>> Logo directory does not exist
>>>
>>>
>>> Creating: /home/tom/.freevo/logos/
>>>
>>>
>>> Traceback (most recent call last):
>>> File "/usr/lib/python2.4/site-packages/freevo/helpers/makelogos.py", line
>>> 60, in ?
>>> img = Image.open_from_memory(urllib2.urlopen(str(imgsrc)).read()) File
>>> "/usr/lib/python2.4/site-packages/kaa/imlib2/__init__.py", line 91, in
>>> open_from_memory img = _Imlib2.open_from_memory(buf) IOError: Could not
>> open
>>
>>> /tmp/kaa-1000/kaa-imlib2-img-428212457: 0
>> Looks like it couldn't grab the link from the net. Maybe the url is not
>> correct. I assume that /tmp/kaa-1000 exists.
>>
>> Duncan
>>
>>
>> -------------------------------------------------------------------------
>> Take Surveys. Earn Cash. Influence the Future of IT
>> Join SourceForge.net's Techsay panel and you'll get the chance to share
>> your opinions on IT & business topics through brief surveys-and earn cash
>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>> _______________________________________________
>> Freevo-users mailing list
>> [email protected]
>> https://lists.sourceforge.net/lists/listinfo/freevo-users
>
> Duncan,
>
> I removed the idelbar stuf from my local_conf.py and tried again:
>
> [EMAIL PROTECTED]:~> freevo makelogos
> Traceback (most recent call last):
> File "/usr/lib/python2.4/site-packages/freevo/helpers/makelogos.py", line
> 60, in ?
> img = Image.open_from_memory(urllib2.urlopen(str(imgsrc)).read())
> File "/usr/lib/python2.4/site-packages/kaa/imlib2/__init__.py", line 91, in
> open_from_memory
> img = _Imlib2.open_from_memory(buf)
> IOError: Could not open /tmp/kaa-1000/kaa-imlib2-img-1480214514: 0
> [EMAIL PROTECTED]:~> ls -al /tmp/kaa-1000/
> total 13
> drwx------ 2 tom users 48 2007-03-06 07:41 .
> drwxrwxrwt 145 root root 13496 2007-03-06 08:30 ..
> [EMAIL PROTECTED]:~>
>
> So there is nothing in the /tmp/kaa-1000/ directory. Is this a problem with
> kaa maybe? Seems strange.
Attached is a new version that won't fix the problem but will stop it
crashing and report the error.
Put the file in /usr/lib/python2.4/site-packages/freevo/helpers/ and let
me know what it says.
Thanks
Duncan
#!/usr/bin/env python
# -*- coding: iso-8859-1 -*-
# -----------------------------------------------------------------------
# makelogos.py - Download TV station logos using the XMLTV info
# -----------------------------------------------------------------------
# $Id: makelogos.py 9271 2007-02-25 08:34:56Z duncan $
#
# Notes:
# Todo:
#
# -----------------------------------------------------------------------
# Freevo - A Home Theater PC framework
# Copyright (C) 2002 Krister Lagerstrom, et al.
# Please see the file freevo/Docs/CREDITS for a complete list of authors.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of MER-
# CHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
# Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# -----------------------------------------------------------------------
import os
import sys
import urllib2
import cStringIO
import kaa.imlib2 as Image
import config
from tv import xmltv
# Check if the logos directory exists, if not, make it before
# proceeding
if not os.path.isdir(config.TV_LOGOS):
print "Logo directory does not exist\n"
print "Creating: %s\n" % (config.TV_LOGOS)
os.mkdir(config.TV_LOGOS)
x = xmltv.read_channels(open(config.XMLTV_FILE))
for i in x:
try:
imgsrc = i['icon'][0]['src']
except KeyError:
imgsrc = None
channel = i['id']
#print '%s - %s' % (imgsrc, channel)
if imgsrc:
try:
img = Image.open_from_memory(urllib2.urlopen(str(imgsrc)).read())
# Convert the image into a PNG and save to logos directory
output_file = config.TV_LOGOS + '/' + channel + '.png'
try:
img.save(output_file)
print 'Saved "%s" for channel "%s"' % (output_file, channel)
except IOError, e:
print e
except Exception, e:
print 'Failed to get "%s" for channel "%s"\nerror "%s"' % (imgsrc,
channel, e)
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Freevo-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-users