transcode 1.0.2 → 1.0.4
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/Gemfile +6 -5
- data/LICENSE +12 -25
- data/README.md +45 -30
- data/Rakefile +2 -2
- data/bin/transcode +1 -1
- data/lib/transcode/configurator.rb +27 -15
- data/lib/transcode/reporter.rb +1 -1
- data/lib/transcode/transcoder.rb +1 -1
- data/lib/transcode/utils.rb +13 -5
- data/lib/transcode/version.rb +3 -2
- data/lib/transcode.rb +1 -1
- data/transcode.gemspec +8 -6
- metadata +29 -16
- data/Gemfile.lock +0 -39
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d4db3c2397750b7490970b538deef35b83273aa18abf3cacb6317554d8699ff9
|
4
|
+
data.tar.gz: 424304c05b94a61ca4793286144ffb7fe346e7793b2901695930452c0c53143b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 12de94cf64c1041f8f89b7bb6d07d0208c3a872ea6f24d013379e99c94589702c828eeac6790553995392a03b0897daa8fef7e78544ffd1cb36f4c83af2f1eff
|
7
|
+
data.tar.gz: c32c3e54669ca56f79a154caba49d51ad665819325d0e341515a51edbafcf29691d3750116e22bc846c949b5dd1015f1e8627ce3ac5102efba83990bcd635b67
|
data/Gemfile
CHANGED
@@ -1,13 +1,14 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
# vi:ts=2 sw=2 tw=79 et lbr wrap
|
4
|
-
# Copyright 2020-
|
4
|
+
# Copyright 2020-2023 by David Rabkin
|
5
5
|
|
6
6
|
source 'https://rubygems.org'
|
7
|
-
ruby '
|
7
|
+
ruby '>2.6'
|
8
8
|
|
9
|
+
gem 'minitest', '5.18.0'
|
9
10
|
gem 'pidfile', '0.3.0'
|
10
|
-
gem 'rake', '13.0.
|
11
|
-
gem 'rubocop', '
|
12
|
-
gem 'terminal-table', '
|
11
|
+
gem 'rake', '13.0.6'
|
12
|
+
gem 'rubocop', '1.50.2'
|
13
|
+
gem 'terminal-table', '3.0.2'
|
13
14
|
gem 'video_transcoding', '0.25.3'
|
data/LICENSE
CHANGED
@@ -1,25 +1,12 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
this list of conditions and the following disclaimer in the documentation
|
14
|
-
and/or other materials provided with the distribution.
|
15
|
-
|
16
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
17
|
-
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
18
|
-
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
19
|
-
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
20
|
-
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
21
|
-
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
22
|
-
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
23
|
-
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
24
|
-
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
25
|
-
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
1
|
+
Copyright 2020 by David Rabkin
|
2
|
+
|
3
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
4
|
+
purpose with or without fee is hereby granted.
|
5
|
+
|
6
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
7
|
+
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
8
|
+
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
9
|
+
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
10
|
+
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
11
|
+
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
12
|
+
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
data/README.md
CHANGED
@@ -1,13 +1,12 @@
|
|
1
1
|
# Transcode
|
2
|
-
Tool to transcode batch of video files
|
3
2
|
|
4
|
-
[](https://ci.appveyor.com/project/rdavid/transcode)
|
4
|
+
[](https://github.com/rdavid/transcode/actions/workflows/lint.yml)
|
5
|
+
[](https://github.com/rdavid/transcode/actions/workflows/ruby.yml)
|
6
|
+
[](https://badge.fury.io/rb/transcode)
|
7
|
+
[](https://codeclimate.com/github/rdavid/transcode/maintainability)
|
8
|
+
[](https://hitsofcode.com/view/github/rdavid/transcode)
|
9
|
+
[](https://github.com/rdavid/transcode/blob/master/LICENSE)
|
11
10
|
|
12
11
|
* [About](#about)
|
13
12
|
* [Installation](#installation)
|
@@ -15,47 +14,63 @@ Version](https://badge.fury.io/rb/transcode.svg)](https://badge.fury.io/rb/trans
|
|
15
14
|
* [License](#license)
|
16
15
|
|
17
16
|
## About
|
18
|
-
|
19
|
-
|
17
|
+
|
18
|
+
`transcode` is a tool to transcode multiple video files. It enhances
|
19
|
+
[Don Melton](http://donmelton.com/)'s [Video
|
20
20
|
Transcoding](https://github.com/donmelton/video_transcoding/). It applies
|
21
21
|
Video Trascoding to each video file in a directory.
|
22
22
|
|
23
23
|
## Installation
|
24
|
+
|
24
25
|
The tool is designed to work on macOS, GNU/Linux, Windows, Unix-like OS. It is
|
25
|
-
packaged as a Gem and require Ruby version 2.6 or later.
|
26
|
-
Ruby](https://www.ruby-lang.org/en/documentation/installation/)
|
26
|
+
packaged as a Gem and require Ruby version 2.6 or later. See “[Installing
|
27
|
+
Ruby](https://www.ruby-lang.org/en/documentation/installation/)” if you don't
|
27
28
|
have the proper version on your platform.
|
28
29
|
|
29
30
|
Use this command to install:
|
30
31
|
|
31
|
-
|
32
|
+
```sh
|
33
|
+
gem install transcode
|
34
|
+
```
|
32
35
|
|
33
36
|
### Updating
|
37
|
+
|
34
38
|
Use this command to update the package:
|
35
39
|
|
36
|
-
|
40
|
+
```sh
|
41
|
+
gem update transcode
|
42
|
+
```
|
37
43
|
|
38
44
|
### Requirements
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
45
|
+
|
46
|
+
See Video Transcoding's [requirements](https://github.com/donmelton/video_transcoding/blob/master/README.md?ts=2#requirements).
|
47
|
+
|
48
|
+
### Usage
|
49
|
+
|
50
|
+
```sh
|
51
|
+
transcode [options]
|
52
|
+
-a, --act Real encoding.
|
53
|
+
-s, --sca Scans files at the directory.
|
54
|
+
-m, --mp3 Converts files to mp3.
|
55
|
+
-d, --dir dir Directory to transcode.
|
56
|
+
-i, --tit tit Specific title by number.
|
57
|
+
-o, --out out Directory to output.
|
58
|
+
-u, --aud aud Audio stream numbers.
|
59
|
+
-t, --sub sub Subtitle stream numbers.
|
60
|
+
-w, --wid wid Width of the table.
|
61
|
+
-v, --version Shows version.
|
62
|
+
```
|
52
63
|
|
53
64
|
### Example
|
54
|
-
|
65
|
+
|
66
|
+
```sh
|
67
|
+
transcode -d <source> -o <destination> -u 1,3,1 -t 2,1,3
|
68
|
+
```
|
55
69
|
|
56
70
|
It converts three files from source with certain audio and subtitle streams.
|
57
71
|
Inspect first with `-s` option to see audio and subtitle streams.
|
58
72
|
|
59
73
|
## License
|
60
|
-
|
61
|
-
|
74
|
+
|
75
|
+
`transcode` is copyright [David Rabkin](http://cv.rabkin.co.il) and
|
76
|
+
available under a [Zero-Claus BSD license](https://github.com/rdavid/transcode/blob/master/LICENSE).
|
data/Rakefile
CHANGED
data/bin/transcode
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
# vi:ts=2 sw=2 tw=79 et lbr wrap
|
4
|
-
# Copyright 2018-
|
4
|
+
# Copyright 2018-2023 by David Rabkin
|
5
5
|
|
6
6
|
require 'optparse'
|
7
7
|
|
@@ -9,6 +9,7 @@ module Transcode
|
|
9
9
|
# Handles input parameters.
|
10
10
|
class Configurator # rubocop:disable Metrics/ClassLength
|
11
11
|
attr_reader :files
|
12
|
+
|
12
13
|
DIC = [
|
13
14
|
['-a', '--act', 'Real encoding.', nil, :act],
|
14
15
|
['-s', '--sca', 'Scans files at the directory.', nil, :sca],
|
@@ -21,14 +22,22 @@ module Transcode
|
|
21
22
|
['-w', '--wid wid', 'Width of the table.', Integer, :wid]
|
22
23
|
].freeze
|
23
24
|
EXT = %i[
|
24
|
-
avi flv m4v mkv mp4 mpg mpeg ts webm vob wmv
|
25
|
+
avi flv m2ts m4v mkv mp4 mpg mpeg mov ts webm vob wmv
|
25
26
|
].map(&:to_s).join(',').freeze
|
26
27
|
|
28
|
+
def add(opt)
|
29
|
+
opt.on('-v', '--version', 'Show version.') do
|
30
|
+
puts "#{File.basename($PROGRAM_NAME)} #{VERSION} #{DATE}"
|
31
|
+
exit
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
27
35
|
def initialize
|
28
36
|
@options = {}
|
29
37
|
OptionParser.new do |o|
|
30
38
|
o.banner = "Usage: #{File.basename($PROGRAM_NAME)} [options]."
|
31
39
|
DIC.each { |f, p, d, t, k| o.on(f, p, t, d) { |i| @options[k] = i } }
|
40
|
+
add(o)
|
32
41
|
end.parse!
|
33
42
|
find_dir
|
34
43
|
find_fil
|
@@ -36,14 +45,8 @@ module Transcode
|
|
36
45
|
end
|
37
46
|
|
38
47
|
def find_dir
|
39
|
-
|
40
|
-
|
41
|
-
else
|
42
|
-
raise "No such directory: #{dir}." unless File.directory?(dir)
|
43
|
-
|
44
|
-
@options[:dir] = File.expand_path(dir)
|
45
|
-
end
|
46
|
-
@options[:out] = File.expand_path(out.nil? ? '~' : out)
|
48
|
+
@options[:dir] = File.expand_path(dir.nil? ? Dir.pwd : dir)
|
49
|
+
@options[:out] = File.expand_path(out.nil? ? Dir.pwd : out)
|
47
50
|
end
|
48
51
|
|
49
52
|
def find_fil
|
@@ -55,21 +58,29 @@ module Transcode
|
|
55
58
|
end
|
56
59
|
|
57
60
|
def validate
|
58
|
-
|
61
|
+
validate_dir(dir, false)
|
62
|
+
validate_dir(out, true)
|
63
|
+
validate_fil
|
59
64
|
validate_tit
|
60
65
|
validate_val(aud, :aud)
|
61
66
|
validate_val(sub, :sub)
|
62
67
|
raise "Width of the table should exeeds 14 symbols: #{wid}." if wid < 15
|
63
68
|
end
|
64
69
|
|
65
|
-
def
|
66
|
-
raise "#{dir}
|
70
|
+
def validate_dir(dir, isw)
|
71
|
+
raise "#{dir}: No such directory." unless File.directory?(dir)
|
72
|
+
|
73
|
+
err = isw ? File.writable?(dir) : File.readable?(dir)
|
74
|
+
raise "#{out}: Permission denied." unless err
|
75
|
+
end
|
67
76
|
|
77
|
+
def validate_fil
|
68
78
|
bad = files.reject { |f| File.readable?(f) }
|
69
|
-
raise "
|
79
|
+
raise "#{dir} doesn't have #{EXT} files or directories." if files.empty?
|
80
|
+
raise "#{bad.join(',')}: Permission denied." unless bad.empty?
|
70
81
|
end
|
71
82
|
|
72
|
-
def validate_tit
|
83
|
+
def validate_tit
|
73
84
|
if tit.nil?
|
74
85
|
@options[:tit] = Array.new(files.size, '0')
|
75
86
|
return
|
@@ -84,6 +95,7 @@ module Transcode
|
|
84
95
|
def validate_val(val, tag)
|
85
96
|
f = files.size
|
86
97
|
(@options[tag] = Array.new(f, '0')).nil? || return if val.nil?
|
98
|
+
|
87
99
|
s = val.size
|
88
100
|
if s == 1
|
89
101
|
@options[tag] = Array.new(f, val.first)
|
data/lib/transcode/reporter.rb
CHANGED
data/lib/transcode/transcoder.rb
CHANGED
data/lib/transcode/utils.rb
CHANGED
@@ -1,24 +1,31 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
# vi:ts=2 sw=2 tw=79 et lbr wrap
|
4
|
-
# Copyright 2018-
|
4
|
+
# Copyright 2018-2023 by David Rabkin
|
5
5
|
|
6
6
|
# All methods are static.
|
7
7
|
class Utils
|
8
|
+
@sep = '~'
|
8
9
|
class << self
|
9
|
-
|
10
|
+
attr_accessor :sep
|
10
11
|
def trim(src, lim)
|
12
|
+
return '' if src.nil? || lim.nil?
|
11
13
|
return src if src.length <= lim
|
12
14
|
|
13
|
-
beg = fin = (lim -
|
15
|
+
beg = fin = (lim - @sep.length) / 2
|
14
16
|
beg -= 1 if lim.odd?
|
15
|
-
src[0..beg] +
|
17
|
+
src[0..beg] + @sep + src[-fin..-1]
|
16
18
|
end
|
17
19
|
end
|
18
20
|
end
|
19
21
|
|
20
22
|
# Returns string with humanized time interval.
|
21
23
|
class Timer
|
24
|
+
@less_sec = 'less than a second'
|
25
|
+
class << self
|
26
|
+
attr_reader :less_sec
|
27
|
+
end
|
28
|
+
|
22
29
|
DIC = [
|
23
30
|
[60, :seconds, :second],
|
24
31
|
[60, :minutes, :minute],
|
@@ -35,7 +42,8 @@ class Timer
|
|
35
42
|
end
|
36
43
|
|
37
44
|
def humanize(sec)
|
38
|
-
return '
|
45
|
+
return '' if sec.nil?
|
46
|
+
return Timer.less_sec if sec < 1
|
39
47
|
|
40
48
|
DIC.map do |cnt, nms, nm1|
|
41
49
|
next if sec <= 0
|
data/lib/transcode/version.rb
CHANGED
data/lib/transcode.rb
CHANGED
data/transcode.gemspec
CHANGED
@@ -7,22 +7,24 @@ require 'transcode'
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = 'transcode'
|
9
9
|
s.version = Transcode::VERSION
|
10
|
-
s.
|
10
|
+
s.date = Transcode::DATE
|
11
|
+
s.required_ruby_version = '>2.6'
|
11
12
|
s.summary = 'Tools to transcode batch of video files.'
|
12
13
|
s.description = <<-HERE
|
13
14
|
Transcode is a wraper on Video Transcoding.
|
14
15
|
HERE
|
15
|
-
s.license = '
|
16
|
+
s.license = '0BSD'
|
16
17
|
s.author = 'David Rabkin'
|
17
|
-
s.email = '
|
18
|
+
s.email = 'david@rabkin.co.il'
|
18
19
|
s.homepage = 'https://github.com/rdavid/transcode'
|
19
20
|
s.files = Dir['{bin,lib}/**/*'] + Dir['[A-Z]*'] + ['transcode.gemspec']
|
20
21
|
s.executables = ['transcode']
|
21
22
|
s.extra_rdoc_files = ['LICENSE', 'README.md']
|
22
23
|
s.require_paths = ['lib']
|
23
24
|
s.add_runtime_dependency 'pidfile', '0.3.0'
|
24
|
-
s.add_runtime_dependency 'terminal-table', '
|
25
|
+
s.add_runtime_dependency 'terminal-table', '3.0.2'
|
25
26
|
s.add_runtime_dependency 'video_transcoding', '0.25.3'
|
26
|
-
s.add_development_dependency '
|
27
|
-
s.add_development_dependency '
|
27
|
+
s.add_development_dependency 'minitest', '5.18.0'
|
28
|
+
s.add_development_dependency 'rake', '13.0.6'
|
29
|
+
s.add_development_dependency 'rubocop', '1.50.2'
|
28
30
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: transcode
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Rabkin
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-04-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pidfile
|
@@ -30,14 +30,14 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
33
|
+
version: 3.0.2
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - '='
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version:
|
40
|
+
version: 3.0.2
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: video_transcoding
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -52,36 +52,50 @@ dependencies:
|
|
52
52
|
- - '='
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: 0.25.3
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: minitest
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - '='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 5.18.0
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - '='
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 5.18.0
|
55
69
|
- !ruby/object:Gem::Dependency
|
56
70
|
name: rake
|
57
71
|
requirement: !ruby/object:Gem::Requirement
|
58
72
|
requirements:
|
59
73
|
- - '='
|
60
74
|
- !ruby/object:Gem::Version
|
61
|
-
version: 13.0.
|
75
|
+
version: 13.0.6
|
62
76
|
type: :development
|
63
77
|
prerelease: false
|
64
78
|
version_requirements: !ruby/object:Gem::Requirement
|
65
79
|
requirements:
|
66
80
|
- - '='
|
67
81
|
- !ruby/object:Gem::Version
|
68
|
-
version: 13.0.
|
82
|
+
version: 13.0.6
|
69
83
|
- !ruby/object:Gem::Dependency
|
70
84
|
name: rubocop
|
71
85
|
requirement: !ruby/object:Gem::Requirement
|
72
86
|
requirements:
|
73
87
|
- - '='
|
74
88
|
- !ruby/object:Gem::Version
|
75
|
-
version:
|
89
|
+
version: 1.50.2
|
76
90
|
type: :development
|
77
91
|
prerelease: false
|
78
92
|
version_requirements: !ruby/object:Gem::Requirement
|
79
93
|
requirements:
|
80
94
|
- - '='
|
81
95
|
- !ruby/object:Gem::Version
|
82
|
-
version:
|
96
|
+
version: 1.50.2
|
83
97
|
description: " Transcode is a wraper on Video Transcoding.\n"
|
84
|
-
email:
|
98
|
+
email: david@rabkin.co.il
|
85
99
|
executables:
|
86
100
|
- transcode
|
87
101
|
extensions: []
|
@@ -90,7 +104,6 @@ extra_rdoc_files:
|
|
90
104
|
- README.md
|
91
105
|
files:
|
92
106
|
- Gemfile
|
93
|
-
- Gemfile.lock
|
94
107
|
- LICENSE
|
95
108
|
- README.md
|
96
109
|
- Rakefile
|
@@ -105,15 +118,15 @@ files:
|
|
105
118
|
- transcode.gemspec
|
106
119
|
homepage: https://github.com/rdavid/transcode
|
107
120
|
licenses:
|
108
|
-
-
|
121
|
+
- 0BSD
|
109
122
|
metadata: {}
|
110
|
-
post_install_message:
|
123
|
+
post_install_message:
|
111
124
|
rdoc_options: []
|
112
125
|
require_paths:
|
113
126
|
- lib
|
114
127
|
required_ruby_version: !ruby/object:Gem::Requirement
|
115
128
|
requirements:
|
116
|
-
- - "
|
129
|
+
- - ">"
|
117
130
|
- !ruby/object:Gem::Version
|
118
131
|
version: '2.6'
|
119
132
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
@@ -122,8 +135,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
122
135
|
- !ruby/object:Gem::Version
|
123
136
|
version: '0'
|
124
137
|
requirements: []
|
125
|
-
rubygems_version: 3.
|
126
|
-
signing_key:
|
138
|
+
rubygems_version: 3.4.8
|
139
|
+
signing_key:
|
127
140
|
specification_version: 4
|
128
141
|
summary: Tools to transcode batch of video files.
|
129
142
|
test_files: []
|
data/Gemfile.lock
DELETED
@@ -1,39 +0,0 @@
|
|
1
|
-
GEM
|
2
|
-
remote: https://rubygems.org/
|
3
|
-
specs:
|
4
|
-
ast (2.4.0)
|
5
|
-
jaro_winkler (1.5.4)
|
6
|
-
parallel (1.19.1)
|
7
|
-
parser (2.7.1.3)
|
8
|
-
ast (~> 2.4.0)
|
9
|
-
pidfile (0.3.0)
|
10
|
-
rainbow (3.0.0)
|
11
|
-
rake (13.0.1)
|
12
|
-
rubocop (0.76.0)
|
13
|
-
jaro_winkler (~> 1.5.1)
|
14
|
-
parallel (~> 1.10)
|
15
|
-
parser (>= 2.6)
|
16
|
-
rainbow (>= 2.2.2, < 4.0)
|
17
|
-
ruby-progressbar (~> 1.7)
|
18
|
-
unicode-display_width (>= 1.4.0, < 1.7)
|
19
|
-
ruby-progressbar (1.10.1)
|
20
|
-
terminal-table (1.8.0)
|
21
|
-
unicode-display_width (~> 1.1, >= 1.1.1)
|
22
|
-
unicode-display_width (1.6.1)
|
23
|
-
video_transcoding (0.25.3)
|
24
|
-
|
25
|
-
PLATFORMS
|
26
|
-
ruby
|
27
|
-
|
28
|
-
DEPENDENCIES
|
29
|
-
pidfile (= 0.3.0)
|
30
|
-
rake (= 13.0.1)
|
31
|
-
rubocop (= 0.76.0)
|
32
|
-
terminal-table (= 1.8.0)
|
33
|
-
video_transcoding (= 0.25.3)
|
34
|
-
|
35
|
-
RUBY VERSION
|
36
|
-
ruby 2.6.3p62
|
37
|
-
|
38
|
-
BUNDLED WITH
|
39
|
-
2.1.4
|