NEWS 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. Overview of Changes in audiowmark-0.6.1:
  2. * improve speed detection/correction
  3. - performance optimizations to make --detect-speed faster
  4. - improve accuracy of speed detection
  5. - make it work properly with short payload
  6. - add second, slower / more accurate algorithm (--detect-speed-patient)
  7. * fix segfaults during hls-prepare (#11)
  8. * read all input if a process provides audio on stdin to avoid SIGPIPE (#19)
  9. * improve infrastructure for testing audiowmark
  10. - run some scripts for 'make check' to ensure everything works correctly
  11. - add CI which builds/tests audiowmark automatically using github actions
  12. - support various sanitizer builds / STL C++ debug builds
  13. - fix some issues triggered by sanitizers
  14. * add --strict option: provide strict and more permissive mode
  15. - "input frames != output frames" is only an error if --strict is used
  16. - enforce payload size if --strict is used
  17. * improve command line parsing error messages
  18. * documentation updates
  19. * minor fixes
  20. Overview of Changes in audiowmark-0.6.0:
  21. * implement speed detection/correction (--detect-speed)
  22. * Add '--json' CLI option for machine readable results.
  23. Overview of Changes in audiowmark-0.5.0:
  24. * support HTTP Live Streaming for audio/video streaming
  25. * fix floating point wav input
  26. * improve command line option handling (ArgParser)
  27. * support seeking on internal watermark state
  28. Overview of Changes in audiowmark-0.4.2:
  29. * compile fixes for g++-9 and clang++-10
  30. * add experimental support for short payload
  31. Overview of Changes in audiowmark-0.4.1:
  32. * initial public release
  33. Overview of Changes in audiowmark-0.4.0:
  34. * add initial video watermarking support (videowmark)
  35. Overview of Changes in audiowmark-0.3.0:
  36. * replace padding at start with a partial B block
  37. * add algorithm for decoding the watermark from short clips
  38. Overview of Changes in audiowmark-0.2.1:
  39. * add limiter to avoid clipping during watermark generation
  40. Overview of Changes in audiowmark-0.2.0:
  41. * support input/output streams
  42. * support raw streams
  43. * some performance optimizations
  44. * unified logging and --quiet option
  45. * improved mp3 detection to avoid false positives
  46. * split up watermarking source (wmadd/wmget/wmcommon)
  47. Overview of Changes in audiowmark-0.1.0:
  48. * initial release