Originally Posted by DragonQ:
“Care to share your DVBSnoop command line?”
Sure, it looks like:
Code:
tzap -c '/home/greebo/.tzap/channels.newmuxes.conf' -S 'TEST37' &
sleep 5
dvbsnoop -tsraw -s ts -b -n 805410 > com8.wh.30s.ts
killall tzap
where channels.newmuxes.conf contains:
Code:
TEST31:554000000:INVERSION_AUTO:BANDWIDTH_8_MHZ:FEC_2_3:FEC_1_2:QAM_256:TRANSMISSION_MODE_8K:GUARD_INTERVAL_1_32:HIERARCHY_NONE:101:102:4168
TEST36:594000000:INVERSION_AUTO:BANDWIDTH_8_MHZ:FEC_2_3:FEC_1_2:QAM_64:TRANSMISSION_MODE_8K:GUARD_INTERVAL_1_32:HIERARCHY_NONE:101:102:4168
TEST37:602000000:INVERSION_AUTO:BANDWIDTH_8_MHZ:FEC_2_3:FEC_1_2:QAM_256:TRANSMISSION_MODE_8K:GUARD_INTERVAL_1_32:HIERARCHY_NONE:101:102:4168
TEST49:698000000:INVERSION_AUTO:BANDWIDTH_8_MHZ:FEC_2_3:FEC_1_2:QAM_64:TRANSMISSION_MODE_8K:GUARD_INTERVAL_1_32:HIERARCHY_NONE:101:102:4168
TEST50:706000000:INVERSION_AUTO:BANDWIDTH_8_MHZ:FEC_2_3:FEC_1_2:QAM_64:TRANSMISSION_MODE_8K:GUARD_INTERVAL_1_32:HIERARCHY_NONE:101:102:4168
TEST56:754000000:INVERSION_AUTO:BANDWIDTH_8_MHZ:FEC_2_3:FEC_1_2:QAM_64:TRANSMISSION_MODE_8K:GUARD_INTERVAL_1_32:HIERARCHY_NONE:101:102:4168
TEST57:762000000:INVERSION_AUTO:BANDWIDTH_8_MHZ:FEC_2_3:FEC_1_2:QAM_64:TRANSMISSION_MODE_8K:GUARD_INTERVAL_1_32:HIERARCHY_NONE:101:102:4168
So to explain, the .conf file contains a fake entry for an imaginary service called TEST37 on the correct frequency 602MHz from Winter Hill. The other entries are for other services that it was looking for at various times before they were broadcasting. With this card most of the settings don't matter, it can still tune if the FEC is wrong - and the PIDs are completely made up and don't matter either - it is just enough to make tzap tune to the correct mux.
So tzap tunes the mux, -S does it silently, and the & drops it into a background process. Then sleep for 5 seconds just to let the tuner stabilise.
Next the dvbsnoop command dumps 805410 raw packets into the .ts file - that's approx 30 seconds worth. Finally the killall command stops the tzap background process to release the tuner for future use.
edit: p.s. calling the output file com8.something.ts is a bad idea if it is going to go anywhere near windows- com8 is a reserved filename related to the good old serial ports. Call it com8_something.ts to be safe!