straight_to_video 0.0.9 → 0.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/app/assets/javascripts/mediabunny.min.js +15 -11
- data/app/assets/javascripts/straight-to-video.js +296 -3
- data/index.js +295 -2
- data/lib/straight_to_video/version.rb +1 -1
- data/package-lock.json +8 -8
- data/package.json +2 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eb365dda5fa968b1cae50f89065e24b0d49f49fa911aa067ace2b19052243123
|
|
4
|
+
data.tar.gz: a67e3ac69b986d0a4458d8c72412ef52de6deb4f564312a3bf156199a99f5260
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c0da985ed8833ee888047ea9654df6d2fc964bf5629a11c03bfdd292047a183f59a41b5fd127805eb25731ff8b34171969b3a36c57ac40bd95961f5c1628ab54
|
|
7
|
+
data.tar.gz: 315f2daf669d9b524f6310f1796becc0606573a39b85f93cf1a725c6e6eceacaf7c2b6bee4cab398f5e3261d05ace06fc42c800095cb14197d26066846bf6f2d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.0.10
|
|
4
|
+
|
|
5
|
+
- Fix Safari macOS Tahoe bug where native video controls never auto-hide by rewriting the moov atom to match ffmpeg's conventions (zero timestamps, standard handler names, edts/elst, extended esds, btrt, sgpd/sbgp)
|
|
6
|
+
|
|
7
|
+
## 0.0.9
|
|
8
|
+
|
|
9
|
+
- Fixes washed out HDR videos on WebKit and enforced with stricter saturation assertion
|
|
10
|
+
|
|
3
11
|
## 0.0.8
|
|
4
12
|
|
|
5
13
|
- fix periodic frame jutter by selecting source frames using mid-frame timestamps instead of boundary timestamps
|