other_video_transcoding 0.11.0 → 0.12.0
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 +6 -0
- data/bin/ask-ffmpeg-log +1 -1
- data/bin/other-transcode +3 -1
- data/other_video_transcoding-0.11.0.gem +0 -0
- data/other_video_transcoding.gemspec +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 34125313312fdd2df4d4ee02edb1bf215d30f84aec152beed03e4a5652ed9168
|
4
|
+
data.tar.gz: b2d1e94d78b4a4ad4957586f432eb011f7a20b77f07669ec997b1e7bf1ea5eb6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a8211a1898a41add509c7be63dcef1a639f597f0a21ff1b97164a3a71c14a939480a657fb6412cbe5caf99ba4b5e213fdd04d2a3432b316e768920c3882b1105
|
7
|
+
data.tar.gz: b933a52ab07ff31ba495f94a02c18f1d3a985685c0ea69ab7a7b9b6fa040897068ef0642c0ab15b09c7a618ac9846a73f8b3f5ce728b19023d59bb40cc3c5a51
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,12 @@
|
|
2
2
|
|
3
3
|
This single document contains all of the notes created for each [release](https://github.com/donmelton/other_video_transcoding/releases).
|
4
4
|
|
5
|
+
## [0.12.0](https://github.com/donmelton/other_video_transcoding/releases/tag/0.12.0)
|
6
|
+
|
7
|
+
Wednesday, October 12, 2022
|
8
|
+
|
9
|
+
* Modify `other-transcode` to explicitly set the output layout for AC-3 and Dolby Digital Plus (Enhanced AC-3) surround audio formats to six channels when the input has more than six channels, typically with 7.1 surround audio. Otherwise new versions of `ffmpeg` will only create five channels and drop the LFE channel. Via [ #167](https://github.com/donmelton/other_video_transcoding/issues/167).
|
10
|
+
|
5
11
|
## [0.11.0](https://github.com/donmelton/other_video_transcoding/releases/tag/0.11.0)
|
6
12
|
|
7
13
|
Saturday, July 16, 2022
|
data/bin/ask-ffmpeg-log
CHANGED
data/bin/other-transcode
CHANGED
@@ -18,7 +18,7 @@ module Transcoding
|
|
18
18
|
class Command
|
19
19
|
def about
|
20
20
|
<<-HERE
|
21
|
-
other-transcode 0.
|
21
|
+
other-transcode 0.12.0
|
22
22
|
Copyright (c) 2019-2022 Don Melton
|
23
23
|
HERE
|
24
24
|
end
|
@@ -2123,6 +2123,8 @@ Requires `ffprobe`, `ffmpeg` and `mkvpropedit`.
|
|
2123
2123
|
if encoder =~ /aac/
|
2124
2124
|
encoder = @aac_fallback_encoder if encoder == 'aac_at'
|
2125
2125
|
channels = 6
|
2126
|
+
elsif input_channels > 6
|
2127
|
+
channels = 6
|
2126
2128
|
end
|
2127
2129
|
end
|
2128
2130
|
end
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: other_video_transcoding
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.12.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Don Melton
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-10-12 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: " Other Video Transcoding is a package of tools to transcode videos.\n"
|
14
14
|
email: don@blivet.com
|
@@ -28,6 +28,7 @@ files:
|
|
28
28
|
- other_video_transcoding-0.1.0.gem
|
29
29
|
- other_video_transcoding-0.1.1.gem
|
30
30
|
- other_video_transcoding-0.10.0.gem
|
31
|
+
- other_video_transcoding-0.11.0.gem
|
31
32
|
- other_video_transcoding-0.2.0.gem
|
32
33
|
- other_video_transcoding-0.3.0.gem
|
33
34
|
- other_video_transcoding-0.3.1.gem
|