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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. 2012-06-20 : Version next
  2. * Add --no-output-on-error (-u) option. By using this option output can be
  3. disabled if there is no currently received code word.
  4. * Remove deprecated --output-filter option. The option you should use is
  5. --no-output-filter.
  6. * Allow camd server address (--camd-server, -s) to be resolved, not only
  7. set by IP address.
  8. * Allow tsdecrypt to read ECM/EMM packet from text file. The added
  9. parameters are -n, -ecm-file <file> and -m --emm-file <file>.
  10. * Add support for CAMD server listening on IPv6.
  11. * Add support for input and output over IPv6.
  12. * Add support for forcing only IPv4 (-4, --ipv4) or only IPv6 (-6, --ipv6).
  13. * Add support for multiple CAMD addresses returned when resolving CAMD
  14. server hostname. tsdecrypt would try each of the addresses and use
  15. the one that works.
  16. * Change the way filenames are set in input/output options.
  17. Now file:// prefix is must be added before the filename otherwise
  18. the parameter is treated as network address.
  19. * Add --emm-filter (-a) option. This option implements EMM filtering.
  20. * Add EMM reassembly (fixups) for Cryptoworks and Viaccess. The fixups
  21. are enabled by default and can be disabled by --no-emm-fixups (-q).
  22. 2012-04-19 : Version 8.1
  23. * Add support for Bulcrypt CAS.
  24. 2012-04-12 : Version 8.0
  25. * Add --biss-key (-Q) option. This option enables BISS decryption.
  26. * Add FFdecsa support. In most cases FFdecsa decrypts faster than libdvcsa.
  27. To compile with FFdecsa support use "make ffdecsa".
  28. * Add --const-cw (-Y) option. This option allows using of constant
  29. code words for decryption.
  30. * Add "make help" target.
  31. * Display better timing information for ECMs and code word changes.
  32. * Filter special symbols in provider and service names before printing them.
  33. 2012-03-07 : Version 7.0
  34. * Add --input-buffer (-T) option. This option allows uninterrupted
  35. decryption even if OSCAM returns code words too late.
  36. * Add --log-file (-F) option.
  37. * Fixed newcamd protocol issues when OSCAM disappeared.
  38. * Fix (and optimize) decryption when the input is MPTS. Previously
  39. decrypting one stream broke the others.
  40. * notify: Add NO_EMM_RECEIVED event.
  41. 2012-02-24 : Version 6.0
  42. * Add --output-tos (-g) option used to set output TOS value.
  43. * Add --input-dump (-W) option used save input stream in file.
  44. * Add --pid-report (-j) option used to turn on PID reporting.
  45. * Add RTP output enabled by --output-rtp (-r) option.
  46. * Add --output-rtp-ssrc (-k) option used to set RTP SSRC.
  47. * A bug was fixed that prevented tsdecrypt from working if CAMD server
  48. was not available for couple of minutes.
  49. 2011-12-23 : Version 5.0
  50. * Add --bench (-b) option that benchmarks libdvbcsa decryption.
  51. * Remove --camd-pkt-delay (-y) option. This workaround is no longer needed.
  52. * Fix payload offset detection, a bug which broke packets that have
  53. adaptation with whole packet size (libtsfuncs).
  54. * Add --input-service (-M) option, to choose service id (program) in MPTS input.
  55. * When the input is MPTS and output filtering is enabled, rewrite output
  56. PAT to include only the single program that is decoded.
  57. * Parse SDT and display provider and service name.
  58. * Add --output-nit-pass (-y) to enable NIT pass through.
  59. * Add --output-eit-pass (-w) to enable EIT (EPG) pass through.
  60. * Add --output-tdt-pass (-x) to enable TDT/TOT pass through.
  61. * Add support for newcamd CAMD protocol.
  62. * Add ECM/EMM queues depth limit to avoid allocating too much memory.
  63. 2011-11-18 : Version 4.0
  64. * Set CAMD sockets NODELAY to avoid OSCAM errors when many packets are sent.
  65. * Add --syslog parameter to enable local syslog logging.
  66. * Set thread names under Linux.
  67. * notify: Added no_code_word/code_word_ok events.
  68. * notify: Added input_timeout/input_ok events.
  69. * notify: Added start/stop events.
  70. * notify: Added option to execute external script on event.
  71. 2011-11-14 : Version 3.2
  72. * Fixed bug that prevented tsdecrypt from working at all :(
  73. 2011-11-12 : Version 3.1
  74. * Add debug level 5 (full mpeg ts packet dump).
  75. * Fix PSI table gathering in invalid transport streams.
  76. * Fix EMM/ECM parsing (this fixes ORF1 decoding on Astra 19.2).
  77. * Process ECMs before EMMs, preventing the case where too much
  78. incoming EMMs interfere with decryption.
  79. 2011-09-30 : Version 3.0
  80. * Add man page.
  81. * Add support for long command line options.
  82. * Add make install/uninstall Makefile targets.
  83. * Add support for compilation on OS X.
  84. * Add tested support for Viaccess.
  85. * Add tested support for Mediaguard (Seca).
  86. * Add tested support for Videoguard (NDS).
  87. * Add untested support for Nagra.
  88. * Add untested support for DRE-Crypt.
  89. * Add option to disable ECM and CW logging (--ecm-no-log).
  90. * Add option to manually set EMM pid (--emm-pid).
  91. * Add option to manually set ECM pid (--ecm-pid).
  92. * Add option to manually set CAID (--caid).
  93. * Add ECM reports (--ecm-report-time).
  94. * Log warnings when there is no input data.
  95. * Log warnings when code word become invalid.
  96. 2011-09-15 : Version 2.0
  97. * Initial public release.