ehbrs-tools 0.18.0 → 0.19.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/lib/ehbrs/runner/videos/unsupported.rb +1 -1
- data/lib/ehbrs/tools/version.rb +1 -1
- data/lib/ehbrs/videos/unsupported/check_support.rb +1 -1
- data/lib/ehbrs/videos/unsupported/fixes/supported_codec.rb +1 -1
- data/lib/ehbrs/videos/unsupported/profiles/aoc.rb +27 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e80d8d25f5c713908af2432c8f80f63c4f4de6f292c4bc915bf33951e998a1cd
|
|
4
|
+
data.tar.gz: ac9156efaa3625fcc64f0268231cc07756ce5ba37309ec44029559389a06bbd0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: de0930f5a26438deef43bbfb5a2245d30ed1d929ed28763fd8f7801f58f9ed813016d22c5c9bba61da8b3f1fcb801b0923381488b92b1279f536b0d8301eddba
|
|
7
|
+
data.tar.gz: 1f36ef925ce34f15f228d69f73ec277b6a56fb0545f19a43dc986516a1ac4c81db389645f6fd7d0cf720d56b1ca1d0150d189a8aec43b853a24e94f8bd622fc3
|
data/lib/ehbrs/tools/version.rb
CHANGED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require 'ehbrs/videos/unsupported/profiles/base'
|
|
4
|
+
|
|
5
|
+
module Ehbrs
|
|
6
|
+
module Videos
|
|
7
|
+
module Unsupported
|
|
8
|
+
module Profiles
|
|
9
|
+
class Aoc < ::Ehbrs::Videos::Unsupported::Profiles::Base
|
|
10
|
+
AUDIO_SUPPORTED_CODECS = %w[aac ac3 mp2 mp3].freeze
|
|
11
|
+
AUDIO_UNSUPPORTED_CODECS = %w[eac3 vorbis].freeze
|
|
12
|
+
|
|
13
|
+
VIDEO_SUPPORTED_CODECS = %w[h264 mpeg4].freeze
|
|
14
|
+
VIDEO_UNSUPPORTED_CODECS = %w[hevc].freeze
|
|
15
|
+
|
|
16
|
+
SUBTITLE_SUPPORTED_CODECS = %w[ass dvd_subtitle hdmv_pgs_subtitle subrip].freeze
|
|
17
|
+
SUBTITLE_UNSUPPORTED_CODECS = %w[mov_text].freeze
|
|
18
|
+
|
|
19
|
+
OTHER_SUPPORTED_CODECS = %w[].freeze
|
|
20
|
+
|
|
21
|
+
MPEG4_EXTRA_SUPPORTED = %w[xvid].freeze
|
|
22
|
+
MPEG4_EXTRA_UNSUPPORTED = %w[].freeze
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ehbrs-tools
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.19.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Esquilo Azul Company
|
|
@@ -232,6 +232,7 @@ files:
|
|
|
232
232
|
- lib/ehbrs/videos/unsupported/fixes/supported_codec.rb
|
|
233
233
|
- lib/ehbrs/videos/unsupported/fixes/supported_container.rb
|
|
234
234
|
- lib/ehbrs/videos/unsupported/profiles.rb
|
|
235
|
+
- lib/ehbrs/videos/unsupported/profiles/aoc.rb
|
|
235
236
|
- lib/ehbrs/videos/unsupported/profiles/base.rb
|
|
236
237
|
- lib/ehbrs/videos/unsupported/profiles/philco.rb
|
|
237
238
|
- lib/ehbrs/videos/unsupported/profiles/samsung.rb
|