video_transcoding 0.25.1 → 0.25.2
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 +7 -1
- data/bin/transcode-video +1 -0
- data/lib/video_transcoding/version.rb +1 -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: 91310f7cf36c3698456dcc60c26d5f0f9d6af28783b4367ecc1eb7a563b78441
|
4
|
+
data.tar.gz: 88307d08b771e035ef2e680449ce35d8903d7bc9e47343557532a536022bb74b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1a6b61b8c459b43c24fea7d25461b8cb6ca5115023921e5b10f962504aeeedbf459aeb38a9237c046bf967557913fc42d8395912b69a8d334f90cc19b7678a50
|
7
|
+
data.tar.gz: 8c3a0444d27f5bafd9e44b7acdfe1be5a19f9b478a398edbbcbe5700e2e10181cf6177440d4c0dd17aab344991391b0e11748abfd20d7c8992eeff6254580993
|
data/CHANGELOG.md
CHANGED
@@ -2,11 +2,17 @@
|
|
2
2
|
|
3
3
|
This single document contains all of the notes created for each [release](https://github.com/donmelton/video_transcoding/releases).
|
4
4
|
|
5
|
+
## [0.25.2](https://github.com/donmelton/video_transcoding/releases/tag/0.25.2)
|
6
|
+
|
7
|
+
Wednesday, May 15, 2019
|
8
|
+
|
9
|
+
* Fix a crash in `transcode-video` with the `--copy-audio-name` option when the input audio track name does not exist. Via [ #279](https://github.com/donmelton/video_transcoding/issues/279).
|
10
|
+
|
5
11
|
## [0.25.1](https://github.com/donmelton/video_transcoding/releases/tag/0.25.1)
|
6
12
|
|
7
13
|
Saturday, March 30, 2019
|
8
14
|
|
9
|
-
* Fix a heinous multi-part bug in `transcode-video` which could prevent the proper detection of certain input audio formats, normally allowed for pass-through, from being copied unchanged to the output. This could also cause the `--keep-ac3-stereo` option from behaving correctly when used together with the `--ac3-encoder eac3` option and argument. Thanks to [@khaosx](https://github.com/khaosx) for
|
15
|
+
* Fix a heinous multi-part bug in `transcode-video` which could prevent the proper detection of certain input audio formats, normally allowed for pass-through, from being copied unchanged to the output. This could also cause the `--keep-ac3-stereo` option from behaving correctly when used together with the `--ac3-encoder eac3` option and argument. Thanks to [@khaosx](https://github.com/khaosx) for finding the problem!
|
10
16
|
|
11
17
|
## [0.25.0](https://github.com/donmelton/video_transcoding/releases/tag/0.25.0)
|
12
18
|
|
data/bin/transcode-video
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: video_transcoding
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.25.
|
4
|
+
version: 0.25.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Don Melton
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-05-15 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: |2
|
14
14
|
Video Transcoding is a package of tools to transcode, inspect
|