Blockstream / satellite

Blockstream Satellite
https://blockstream.github.io/satellite/
GNU General Public License v3.0
977 stars 152 forks source link

With which option or configuration can you save the transport stream in a file? #59

Closed VDelport closed 4 years ago

VDelport commented 4 years ago

At blocksat-cli usb I want to save the transport stream received for a time in a file. How can I configure it?

blockstreamsatellite commented 4 years ago

Hi @VDelport ,

You need to run with option -r [filename], like so:

blocksat-cli usb launch -r blocksat.ts

FYI, all commands in the CLI have help menus, so you could check, for example:

blocksat-cli usb launch -h

Once you do capture the TS file (let's say named blocksat.ts), you can use TSDuck to inspect it. For example:

 tsdump blocksat.ts

or

 tsanalyze blocksat.ts
VDelport commented 4 years ago

Thank you.