dvdvrconv 1.0.1 → 1.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: adaaa6ba49f992ba560e8a0c5baaaa056ffc24c662a261f9d2f243eeaaff4a52
4
- data.tar.gz: b417fc7bea2d6b03df97c4b76b97e0f98f9497183cfcf2fcd1d5c635ed30c0a4
3
+ metadata.gz: ebd0b6b68888121b16c1922584806cf3243004a6ad4266fe566fa214b24ec879
4
+ data.tar.gz: ca80cd76a741a472b620e6bf4b719eda1c19c71c0fd4520bbd272c0ea2fc6bd0
5
5
  SHA512:
6
- metadata.gz: 31af91dcf73ac4497d5a613a0792c6cfd47c5b521447011fde554c9cb25679e71ec9949094852038ebf4b2c1916d7b56c4e8181cb01cf870381df8e893c2049b
7
- data.tar.gz: f1f5c553b3f4a0a5d66d723c6773e07c9de05c19788a204b4e170a609266e9cd89cc0fb5ad425160e268f38de52409e0ab741ff1528afa1caa45f0e3e9fb4397
6
+ metadata.gz: 2e25f62d9189c973cab886e9d1ee04bae73211d7c19ec229de24ea05d2a5ecfee8a80d78159bd627205f6547b465ee05f77ce5ad67a3db51a955d45e15969528
7
+ data.tar.gz: 4794ddbec14b997291883c1b159c7809707fa77d9db42e8a2cb94e8d34fe8b22ccae37d4c953a489116c4194aca37cfe9d25e67f6e98ed4c73ea7add2d021e78
data/README.md CHANGED
@@ -31,9 +31,14 @@ $ gem install dvdvrconv
31
31
 
32
32
  ## Usage
33
33
 
34
- TODO:
35
- * Write usage instructions here
36
- * Add command options
34
+ ```
35
+ >dvdvrconv -h
36
+ Usage: dvdvrconv [options]
37
+ -v, --version Show version
38
+ -i, --info Show file information
39
+ --config=FILE Use YAML format FILE.
40
+ ```
41
+
37
42
 
38
43
  ## Development
39
44
 
@@ -55,8 +55,8 @@ module Dvdvrconv
55
55
  end
56
56
 
57
57
  # File convert command, vob to mp4 for FFmpeg.
58
- # * Change the aspect ratio to 16:9.
59
- # * Delete a closed caption.
58
+ # * Change the aspect ratio to 16:9.
59
+ # * Delete a closed caption.
60
60
  def str_convert_cmd(file_name)
61
61
  %Q[ffmpeg -i #{file_name}.vob -filter:v "crop=704:474:0:0" -vcodec libx264 -b:v 500k -aspect 16:9 -acodec copy -bsf:v "filter_units=remove_types=6" #{file_name}.mp4]
62
62
  end
@@ -279,9 +279,9 @@ module Dvdvrconv
279
279
  #
280
280
  # concat_list = [[file_name, contents, base_name], [file_name, contents, base_name]. .... ]
281
281
  #
282
- # @param [String] file_name concat list name.
283
- # @param [String] contents concatenate file names.
284
- # @param [String] base_name output vob name.
282
+ # @param [String] file_name concat list name.
283
+ # @param [String] contents concatenate file names.
284
+ # @param [String] base_name output vob name.
285
285
  #
286
286
  def concat_titles(concat_list)
287
287
  puts "----- Concatenate Split Titles -----"
@@ -1,3 +1,3 @@
1
1
  module Dvdvrconv
2
- VERSION = "1.0.1"
2
+ VERSION = "1.0.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dvdvrconv
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - icm7216
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-01-18 00:00:00.000000000 Z
11
+ date: 2021-02-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: test-unit