Skip to content

Releases: justdan96/tsMuxer

Nightly build from 2023-10-11-01-53-10

11 Oct 01:53
Compare
Choose a tag to compare
Pre-release
nightly-2023-10-11-01-53-10

Fix skip_bytes

Nightly build from 2023-10-10-01-53-02

10 Oct 01:53
Compare
Choose a tag to compare
Pre-release
nightly-2023-10-10-01-53-02

Fix issues #784, #785, #786

Nightly build from 2023-10-05-01-55-56

05 Oct 01:55
Compare
Choose a tag to compare
Pre-release
nightly-2023-10-05-01-55-56

Create seek method on main thread

Nightly build from 2023-10-04-01-54-56

04 Oct 01:54
Compare
Choose a tag to compare
Pre-release
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

03 Oct 01:53
Compare
Choose a tag to compare
Pre-release
nightly-2023-10-03-01-53-39

Mov: add 1 second sleep after file seek

Nightly build from 2023-09-30-01-50-24

30 Sep 01:50
Compare
Choose a tag to compare
Pre-release
nightly-2023-09-30-01-50-24

Fix LPCM header

Nightly build from 2023-09-26-01-53-35

26 Sep 01:53
Compare
Choose a tag to compare
Pre-release
Fix CLPI for H.264 BFF (Bottom Field First) streams

Fixes issue #700.

Nightly build from 2023-09-24-01-55-24

24 Sep 01:55
Compare
Choose a tag to compare
Pre-release
nightly-2023-09-24-01-55-24

Fix DTS channels

Nightly build from 2023-09-22-01-52-35

22 Sep 01:52
Compare
Choose a tag to compare
Pre-release
nightly-2023-09-22-01-52-35

Fix skip_bytes

Nightly build from 2023-09-20-01-52-31

20 Sep 01:52
Compare
Choose a tag to compare
Pre-release
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.