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 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. 2012-03-07 : Version 7.0
  2. * Add --input-buffer (-T) option. This option allows uninterrupted
  3. decryption even if OSCAM returns code words too late.
  4. * Add --log-file (-F) option.
  5. * Fixed newcamd protocol issues when OSCAM disappeared.
  6. * Fix (and optimize) decryption when the input is MPTS. Previously
  7. decrypting one stream broke the others.
  8. * notify: Add NO_EMM_RECEIVED event.
  9. 2012-02-24 : Version 6.0
  10. * Add --output-tos (-g) option used to set output TOS value.
  11. * Add --input-dump (-W) option used save input stream in file.
  12. * Add --pid-report (-j) option used to turn on PID reporting.
  13. * Add RTP output enabled by --output-rtp (-r) option.
  14. * Add --output-rtp-ssrc (-k) option used to set RTP SSRC.
  15. * A bug was fixed that prevented tsdecrypt from working if CAMD server
  16. was not available for couple of minutes.
  17. 2011-12-23 : Version 5.0
  18. * Add --bench (-b) option that benchmarks libdvbcsa decryption.
  19. * Remove --camd-pkt-delay (-y) option. This workaround is no longer needed.
  20. * Fix payload offset detection, a bug which broke packets that have
  21. adaptation with whole packet size (libtsfuncs).
  22. * Add --input-service (-M) option, to choose service id (program) in MPTS input.
  23. * When the input is MPTS and output filtering is enabled, rewrite output
  24. PAT to include only the single program that is decoded.
  25. * Parse SDT and display provider and service name.
  26. * Add --output-nit-pass (-y) to enable NIT pass through.
  27. * Add --output-eit-pass (-w) to enable EIT (EPG) pass through.
  28. * Add --output-tdt-pass (-x) to enable TDT/TOT pass through.
  29. * Add support for newcamd CAMD protocol.
  30. * Add ECM/EMM queues depth limit to avoid allocating too much memory.
  31. 2011-11-18 : Version 4.0
  32. * Set CAMD sockets NODELAY to avoid OSCAM errors when many packets are sent.
  33. * Add --syslog parameter to enable local syslog logging.
  34. * Set thread names under Linux.
  35. * notify: Added no_code_word/code_word_ok events.
  36. * notify: Added input_timeout/input_ok events.
  37. * notify: Added start/stop events.
  38. * notify: Added option to execute external script on event.
  39. 2011-11-14 : Version 3.2
  40. * Fixed bug that prevented tsdecrypt from working at all :(
  41. 2011-11-12 : Version 3.1
  42. * Add debug level 5 (full mpeg ts packet dump).
  43. * Fix PSI table gathering in invalid transport streams.
  44. * Fix EMM/ECM parsing (this fixes ORF1 decoding on Astra 19.2).
  45. * Process ECMs before EMMs, preventing the case where too much
  46. incoming EMMs interfere with decryption.
  47. 2011-09-30 : Version 3.0
  48. * Add man page.
  49. * Add support for long command line options.
  50. * Add make install/uninstall Makefile targets.
  51. * Add support for compilation on OS X.
  52. * Add tested support for Viaccess.
  53. * Add tested support for Mediaguard (Seca).
  54. * Add tested support for Videoguard (NDS).
  55. * Add untested support for Nagra.
  56. * Add untested support for DRE-Crypt.
  57. * Add option to disable ECM and CW logging (--ecm-no-log).
  58. * Add option to manually set EMM pid (--emm-pid).
  59. * Add option to manually set ECM pid (--ecm-pid).
  60. * Add option to manually set CAID (--caid).
  61. * Add ECM reports (--ecm-report-time).
  62. * Log warnings when there is no input data.
  63. * Log warnings when code word become invalid.
  64. 2011-09-15 : Version 2.0
  65. * Initial public release.