other_video_transcoding 0.11.0 → 0.12.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2a38e8e2bf7937b708b2b024767f266beee682bc92f7377f4e8062dee7babd09
4
- data.tar.gz: e3fd2a8a57f2fad558b9a30fcb2fae633b8b7120d9e802f3d08a65de1053b1ab
3
+ metadata.gz: 34125313312fdd2df4d4ee02edb1bf215d30f84aec152beed03e4a5652ed9168
4
+ data.tar.gz: b2d1e94d78b4a4ad4957586f432eb011f7a20b77f07669ec997b1e7bf1ea5eb6
5
5
  SHA512:
6
- metadata.gz: d8dd9d8cb3788ec1d17379d167e75dbe506dca39b64a7e18f162021387d9329e0bb874b6a9bf298d866d27e5a47e151e43881708c3efc22730ee0fbc5004addc
7
- data.tar.gz: db27d572846d979263b8c5b7286f011849b7b8c6669e18a740bed29db3b1fbf5c0d924a420e2f531f26f4ae97d85f484161adc5a5b006f5b4914415d31cc512c
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
@@ -16,7 +16,7 @@ module Transcoding
16
16
  class Command
17
17
  def about
18
18
  <<-HERE
19
- ask-ffmpeg-log 0.11.0
19
+ ask-ffmpeg-log 0.12.0
20
20
  Copyright (c) 2019-2022 Don Melton
21
21
  HERE
22
22
  end
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.11.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
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'other_video_transcoding'
3
- s.version = '0.11.0'
3
+ s.version = '0.12.0'
4
4
  s.required_ruby_version = '>= 2.0'
5
5
  s.summary = 'Other tools to transcode videos.'
6
6
  s.description = <<-HERE
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.11.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-07-16 00:00:00.000000000 Z
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