Getting TS Stream Dump on Android STB
If you need to make a TS stream dump on Android STB, you can do it in 3 steps using the chk_mcast utility:
- Download chk_mcast and install with ADB:
adb push chk_mcast /data/local/tmp/
- Login to the box with ADB tool and make the utility executable, if needed:
adb shell “chmod +x /data/local/tmp/chk_mcast”
- Start playing the channel and make sure that the issue occurs.
- Depending on the issue or the Technical Support Team request collect a dump (typically 10 minutes long) on the STB and download it:
adb shell $ /data/local/tmp/chk_mcast -t 600 -d MCAST_IP:PORT > /data/local/tmp/dump.ts $ exit adb pull /data/local/tmp/dump.ts .
- Another option is to save the file directly on your PC:
adb shell “/data/local/tmp/chk_mcast -t 600 -d MCAST_IP:PORT” > dump.ts