Releases: justdan96/tsMuxer
Releases · justdan96/tsMuxer
Nightly build from 2023-10-11-01-53-10
nightly-2023-10-11-01-53-10 Fix skip_bytes
Nightly build from 2023-10-10-01-53-02
nightly-2023-10-10-01-53-02 Fix issues #784, #785, #786
Nightly build from 2023-10-05-01-55-56
nightly-2023-10-05-01-55-56 Create seek method on main thread
Nightly build from 2023-10-04-01-54-56
Fix mov Quicktime MetaData Quicktime MetaData is much more extensive than the 21 tags in tsMuxer, and is regularly updated. This commit allow to take into account any metaData. Note that the metaData table is currently unused by tsMuxer.
Nightly build from 2023-10-03-01-53-39
nightly-2023-10-03-01-53-39 Mov: add 1 second sleep after file seek
Nightly build from 2023-09-30-01-50-24
nightly-2023-09-30-01-50-24 Fix LPCM header
Nightly build from 2023-09-26-01-53-35
Fix CLPI for H.264 BFF (Bottom Field First) streams Fixes issue #700.
Nightly build from 2023-09-24-01-55-24
nightly-2023-09-24-01-55-24 Fix DTS channels
Nightly build from 2023-09-22-01-52-35
nightly-2023-09-22-01-52-35 Fix skip_bytes
Nightly build from 2023-09-20-01-52-31
skip_bytes use File Seek Currently for bytes skipping, tsMuxer reads 2 MB blocks at a time from the input file through a loop: this can take substantial time for large skips/files -especially when the file is on a NAS, accessed via WiFi. This pull introduces file seeking so that only two blocks (4MB) are left to be read. Fixes issue #733.