חיפשתי שבוע שלם בפורום ובאינטרנט icons להורדה ל-hot עד היום ללא הצלחה
היום מצאתי קולקציה מצוינת
רשימה המלאה של כל הערוצי hot ישר מהמקור !!!
כתבתי סקריפט קטן לטעינה אוטומטית לבסיס הנתונים.
קוד: בחירת הכל
#!/bin/sh
# Tony Arie Kolev - this script scans icons directory
# and define icon for according TV channel (by number)
# cr-eated 11/12/2008
# Usage hints:
# change pass to apropriate value of mysql data base password
# download hot_icons.tar.gz to /home/mythtv
# put this script to /home/mythtv
# make it executab-le using:
# chmod +x icons_setup.sh
# execute it using:
# ./icons_setup.sh
# Have a fun!
#
cd /home/mythtv/.mythtv
tar zxvf ../hot_icons.tar.gz
icons_dir=/home/mythtv/.mythtv/hot_icons
pass=mythtv
#
find $icons_dir \( -iname \*.jpg -print0 \) -o \( -iname \*.gif -print0 \) | xargs -0 ls > /home/mythtv/icons.txt
cat /home/mythtv/icons.txt | while read icon ;do
channel0=${icon##*/};
channel=${channel0%.*};
mysql mythconverg -p$pass <<EOF
up-date channel SET icon='$icon' WHERE CAST(freqid as UNSIGNED)=CAST('$channel' as UNSIGNED);
EOF
done
http://sourceforge.net/project/platform ... form=12787
כולם מוזמנים להשתמש חופשי.


