$ telnet humax
Trying 172.29.0.252...
Connected to humax
Escape character is '^]'.
#
# df -h
Filesystem Size Used Available Use% Mounted on
rootfs 15.1M 15.1M 0 100% /
/dev/root 15.1M 15.1M 0 100% /
tmpfs 61.0M 4.0k 61.0M 0% /tmp
tmpfs 61.0M 0 61.0M 0% /media
/dev/mtdblock1 2.0M 456.0k 1.6M 22% /var/lib/humaxtv
/dev/mtdblock2 2.0M 388.0k 1.6M 19% /var/lib/humaxtv_backup
/dev/sda1 1011.4M 36.2M 923.8M 4% /mnt/hd1
/dev/sda2 906.1G 224.6G 635.5G 26% /mnt/hd2
/dev/sda3 9.8G 268.1M 9.1G 3% /mnt/hd3
Second point that could be considered is regarding the database. As the database is already editable via the remote control (for recording schedule etc) all you are going to be doing is writing code that makes the same changes to the DATA stored in the table - you are not going to be making changes to the table structure are you
humax# jimsh
Welcome to Jim version 0.71, Copyright (c) 2005-8 Salvatore Sanfilippo
. package require sqlite3
. set db [sqlite3.open /var/lib/humaxtv/rsv.db]
. set res [$db query {select * from tbl_reservations}]
. foreach r $res {puts "$r(szevtname) $r(nduration) $r(szCRID)"}
i7NCIS 3600 WWW.FIVE.TV/RARH
i7Octonauts 600 FP.BBC.CO.UK/KQX9Q1
i7Octonauts: Creature Reports 300 FP.BBC.CO.UK/KS658O
i7Dennis & Gnasher 900 FP.BBC.CO.UK/KR9GHW
i7CSI: New York 3600 WWW.FIVE.TV/RAQN
i7CSI: Crime Scene Investigation 3600 WWW.FIVE.TV/RAUE
i7Chuggington 600 FP.BBC.CO.UK/KPM3QK
i7The Scooby-Doo Show 1800 FP.BBC.CO.UK/KSN12C
Wonders of the Universe 3600 FP.BBC.CO.UK/KT948D
i7The Mentalist 3600 WWW.FIVE.TV/RAQQ
i7The Mentalist 3600 WWW.FIVE.TV/RAQQ
i7Waking the Dead 3600 FP.BBC.CO.UK/KTCWHC
Comic Relief Highlights 2011 3600 FP.BBC.CO.UK/KTCX9K
Formula 1: The Chinese Grand Prix 9000 FP.BBC.CO.UK/KTGN3M
i7Formula 1: The Chinese Grand Prix 3600 FP.BBC.CO.UK/KTLO9J
SuperScrimpers: Waste Not Want Not 1800 WWW.CHANNEL4.COM/C4ED0110330162111551
i7The Fall Guy 3900 WWW.ITV.COM/27759895
i7The Fall Guy 3600 WWW.ITV.COM/27759897
.
Does this mean you are not going to release your HDF Tool so that anyone can just make their own ?I've almost got an HDF file ready that I'll be happy to share
Does this mean you are not going to release your HDF Tool so that anyone can just make their own ?
Thanks af123, any tool which can make things easier has got to be good. Looking forward to the official release.It might even be useful to streamline the creation of your FOXSAT files
humax# ls
Chuggington_20110107_0748.hmt Chuggington_20110305_0720.nts
Chuggington_20110107_0748.nts Chuggington_20110305_0720.thm
Chuggington_20110107_0748.thm Chuggington_20110305_0720.ts
Chuggington_20110107_0748.ts Chuggington_20110306_0720.hmt
Chuggington_20110108_0720.hmt Chuggington_20110306_0720.nts
Chuggington_20110108_0720.nts Chuggington_20110306_0720.thm
Chuggington_20110108_0720.thm Chuggington_20110306_0720.ts
Chuggington_20110108_0720.ts Chuggington_20110307_0719.hmt
Chuggington_20110109_0720.hmt Chuggington_20110307_0719.nts
... (you get the picture)
#!/bin/sh
[ ! -d dup ] && mkdir dup
for hmt in *.hmt; do
fbase=`basename $hmt .hmt`
epg=`hmt $hmt | grep '^EPG:' | cut -d: -f2`
newfbase="`echo $epg | tr '[/ ]' '[._]'`"
[ "$fbase" = "$newfbase" ] && continue
echo "$fbase -> $newfbase"
if [ -f "$newfbase.ts" ]; then
echo " Duplicate"
mv "$fbase."* dup
continue
fi
for f in "$fbase."*; do
[ ! -f "$f" ] && continue
ext=`echo "$f" | sed 's/.*\.//'`
echo " Moving $f [$ext]"
mv "$f" "$newfbase.$ext"
done
hmt +patchtitle="$epg" "$newfbase.hmt"
done
A_Pat_On_The_Paintwork.hmt Koko_on_Call.hmt
A_Pat_On_The_Paintwork.nts Koko_on_Call.nts
A_Pat_On_The_Paintwork.thm Koko_on_Call.thm
A_Pat_On_The_Paintwork.ts Koko_on_Call.ts
Action_Brewster.hmt Late_Again_Eddie.hmt
Action_Brewster.nts Late_Again_Eddie.nts
Action_Brewster.thm Late_Again_Eddie.thm
Action_Brewster.ts Late_Again_Eddie.ts