• The forum software that supports hummy.tv has been upgraded to XenForo 2.3!

    Please bear with us as we continue to tweak things, and feel free to post any questions, issues or suggestions in the upgrade thread.

IP Remote Commands

The 'Recording' button does not work on my HDRs. So I cannot access any recorded programs (obviously).
 
The 'Recording' button does not work on my HDRs. So I cannot access any recorded programs (obviously).

What box do you have as it's working fine on mine? If there is a different remote code on your box I will code it into the next version which I am hoping to get released to the App Store in around a weeks time.

Next version auto detects and supports multiple boxes on the same wifi network so I can certainly make changes for different boxes if needed.


Sent from my iPhone using Tapatalk
 
They are HDR-T2. I do realise that this is the FVP-4000T forum, but I thought I would 'take a punt'.

Thanks.
 
The 'Recording' button does not work on my HDRs. So I cannot access any recorded programs (obviously).
I don't understand what you mean. OK, so you are saying you can't trigger an instant recording, but why does that mean you can't access any recordings?
 
Thanks to the contributors to this thread. I used this information here.

Shell script:
Code:
# IP commands are used to simulate remote. Folder is created. File moved into it and then out again. Folder is deleted.


HOST="192.168.1.120"

flag=0

for i in  "57" "3d" "56" "56" "56" "56" "56" "3d" "3b" "54" "58" "58" "58" "58" "22" "54" "3b" "54" "54" "54" "58" "58" "55" "20" "55" "58" "55" "3b" "54" "54" "54" "58" "20" "58" "3b" "58" "52" "58" "57"
do

cmd=`echo $i | xxd -p | sed 's/..$//'`
cmd=`echo '686d78726100000072637500000000003030'$cmd'00000000f410783a01000000'`
echo $cmd | xxd -r -p > /dev/udp/$HOST/22558

    if [ $i == "3d" ] && [ $flag == 0 ]; then
        sleep 10
        flag=1
    fi

    if  [ $i == "20" ]; then
        sleep 4
    fi
sleep 0.2
done
 
Back
Top