tsdecrypt reads and decrypts CSA encrypted incoming mpeg transport stream over UDP/RTP using code words obtained from OSCAM or similar CAM server. tsdecrypt communicates with CAM server using cs378x (camd35 over tcp) protocol or newcamd protocol. https://georgi.unixsol.org/programs/tsdecrypt/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ChangeLog 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. 2011-12-23 : Version 5.0
  2. * Add --bench (-b) option that benchmarks libdvbcsa decryption.
  3. * Remove --camd-pkt-delay (-y) option. This workaround is no longer needed.
  4. * Fix payload offset detection, a bug which broke packets that have
  5. adaptation with whole packet size (libtsfuncs).
  6. * Add --input-service (-M) option, to choose service id (program) in MPTS input.
  7. * When the input is MPTS and output filtering is enabled, rewrite output
  8. PAT to include only the single program that is decoded.
  9. * Parse SDT and display provider and service name.
  10. * Add --output-nit-pass (-y) to enable NIT pass through.
  11. * Add --output-eit-pass (-w) to enable EIT (EPG) pass through.
  12. * Add --output-tdt-pass (-x) to enable TDT/TOT pass through.
  13. * Add support for newcamd CAMD protocol.
  14. * Add ECM/EMM queues depth limit to avoid allocating too much memory.
  15. 2011-11-18 : Version 4.0
  16. * Set CAMD sockets NODELAY to avoid OSCAM errors when many packets are sent.
  17. * Add --syslog parameter to enable local syslog logging.
  18. * Set thread names under Linux.
  19. * notify: Added no_code_word/code_word_ok events.
  20. * notify: Added input_timeout/input_ok events.
  21. * notify: Added start/stop events.
  22. * notify: Added option to execute external script on event.
  23. 2011-11-14 : Version 3.2
  24. * Fixed bug that prevented tsdecrypt from working at all :(
  25. 2011-11-12 : Version 3.1
  26. * Add debug level 5 (full mpeg ts packet dump).
  27. * Fix PSI table gathering in invalid transport streams.
  28. * Fix EMM/ECM parsing (this fixes ORF1 decoding on Astra 19.2).
  29. * Process ECMs before EMMs, preventing the case where too much
  30. incoming EMMs interfere with decryption.
  31. 2011-09-30 : Version 3.0
  32. * Add man page.
  33. * Add support for long command line options.
  34. * Add make install/uninstall Makefile targets.
  35. * Add support for compilation on OS X.
  36. * Add tested support for Viaccess.
  37. * Add tested support for Mediaguard (Seca).
  38. * Add tested support for Videoguard (NDS).
  39. * Add untested support for Nagra.
  40. * Add untested support for DRE-Crypt.
  41. * Add option to disable ECM and CW logging (--ecm-no-log).
  42. * Add option to manually set EMM pid (--emm-pid).
  43. * Add option to manually set ECM pid (--ecm-pid).
  44. * Add option to manually set CAID (--caid).
  45. * Add ECM reports (--ecm-report-time).
  46. * Log warnings when there is no input data.
  47. * Log warnings when code word become invalid.
  48. 2011-09-15 : Version 2.0
  49. * Initial public release.