video_transcoding 0.2.7 → 0.2.8

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
  SHA1:
3
- metadata.gz: 3bedd4d33a8b35d8dfc86033dec6c1160cedc783
4
- data.tar.gz: 2d0e226637aabdbd2c3cc5c888158bc6d17acda8
3
+ metadata.gz: 8b5adafe5bd6c4a00292c1612441c6c7eb8b4802
4
+ data.tar.gz: 32aa6c3d0ac955af512d5df074c7a2574d715138
5
5
  SHA512:
6
- metadata.gz: 0ebacbfdfeedd5aa703974207d939200ea22db51e47ac77dbfd22f668501f4c0ef546485a7d3c711511cbf652aaac817ca556190376e88775b006731987afce1
7
- data.tar.gz: aeecebdd57b8169705eb96c78e1f5e3f8152ad4a705a7b5afe1465e444aa81179253d4fee325309c9b2c6f8a41d8f079cec802618b077a10c34a24ab5a347f29
6
+ metadata.gz: 8acab588ee097fb887826a185e9b61c82de05ebce05163e2ba7d01044fb38da3cd6840de96391296dd5d5ef43ff34b70594fcca124f6bc0fd5e3154689f92a56
7
+ data.tar.gz: 135a462f956264ec61d47c02814e122e694bfcf47ecade0182519f157b1d7a2a3002595f3487aecfb96d018139298c9084191004e95ee10b3b4aa0e820994b57
data/LICENSE CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2013-2015 Don Melton
1
+ Copyright (c) 2013-2016 Don Melton
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining a copy
4
4
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -424,7 +424,7 @@ I have four rules when preparing my own media for transcoding:
424
424
 
425
425
  * It can also make an unencrypted backup of your entire Blu-ray or DVD to a disc image directory.
426
426
 
427
- * It's not pretty and it's not particularly easy use. But once you figure out how it works, you can rip your video exactly the way you want.
427
+ * It's not pretty and it's not particularly easy to use. But once you figure out how it works, you can rip your video exactly the way you want.
428
428
 
429
429
  #### Why a single `.mkv` file?
430
430
 
data/bin/transcode-video CHANGED
@@ -1046,7 +1046,7 @@ HERE
1046
1046
  else
1047
1047
  files << file
1048
1048
  encodings << encoding
1049
- offsets << language
1049
+ offsets << offsets
1050
1050
  languages << language
1051
1051
  end
1052
1052
  end
@@ -1,7 +1,7 @@
1
1
  #
2
2
  # handbrake.rb
3
3
  #
4
- # Copyright (c) 2013-2015 Don Melton
4
+ # Copyright (c) 2013-2016 Don Melton
5
5
  #
6
6
 
7
7
  module VideoTranscoding
@@ -14,17 +14,14 @@ module VideoTranscoding
14
14
  Tool.provide(COMMAND_NAME, ['--preset-list']) do |output, status, _|
15
15
  fail "#{COMMAND_NAME} failed during execution" unless status == 0
16
16
 
17
- unless output =~ /^HandBrake ([^ ]+)/
18
- Console.debug output
19
- fail "#{COMMAND_NAME} version unknown"
20
- end
21
-
22
- version = $1
23
- Console.info "#{$MATCH} found..."
17
+ if output =~ /^HandBrake ([^ ]+)/
18
+ version = $1
19
+ Console.info "#{$MATCH} found..."
24
20
 
25
- unless (version =~ /^([0-9]+)\.([0-9]+)/ and (($1.to_i * 100) + $2.to_i) >= 10) or
26
- (version =~ /^svn([0-9]+)/ and $1.to_i >= 6536)
27
- fail "#{COMMAND_NAME} version 0.10.0 or later required"
21
+ unless (version =~ /^([0-9]+)\.([0-9]+)/ and (($1.to_i * 100) + $2.to_i) >= 10) or
22
+ (version =~ /^svn([0-9]+)/ and $1.to_i >= 6536)
23
+ fail "#{COMMAND_NAME} version 0.10.0 or later required"
24
+ end
28
25
  end
29
26
  end
30
27
  end
@@ -1,7 +1,7 @@
1
1
  #
2
2
  # mp4track.rb
3
3
  #
4
- # Copyright (c) 2013-2015 Don Melton
4
+ # Copyright (c) 2013-2016 Don Melton
5
5
  #
6
6
 
7
7
  module VideoTranscoding
@@ -14,17 +14,12 @@ module VideoTranscoding
14
14
  Tool.provide(COMMAND_NAME, ['--version']) do |output, status, _|
15
15
  fail "#{COMMAND_NAME} failed during execution" unless status == 0
16
16
 
17
- unless output =~ /^mp4track - MP4v2 ([0-9.]+)/
17
+ unless output =~ /^mp4track - MP4v2 .*/
18
18
  Console.debug output
19
19
  fail "#{COMMAND_NAME} version unknown"
20
20
  end
21
21
 
22
- version = $1
23
22
  Console.info "#{$MATCH} found..."
24
-
25
- unless version =~ /^([0-9]+)\.([0-9]+)/ and (($1.to_i * 100) + $2.to_i) >= 200
26
- fail "#{COMMAND_NAME} version 2.0.0 or later required"
27
- end
28
23
  end
29
24
  end
30
25
 
@@ -1,9 +1,9 @@
1
1
  #
2
2
  # version.rb
3
3
  #
4
- # Copyright (c) 2013-2015 Don Melton
4
+ # Copyright (c) 2013-2016 Don Melton
5
5
  #
6
6
 
7
7
  module VideoTranscoding
8
- VERSION = '0.2.7'
8
+ VERSION = '0.2.8'
9
9
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: video_transcoding
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.7
4
+ version: 0.2.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Don Melton
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-07-07 00:00:00.000000000 Z
11
+ date: 2016-01-05 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: |2
14
14
  Video Transcoding is a package of tools to transcode, inspect
@@ -45,18 +45,6 @@ files:
45
45
  - lib/video_transcoding/mplayer.rb
46
46
  - lib/video_transcoding/tool.rb
47
47
  - lib/video_transcoding/version.rb
48
- - video_transcoding-0.1.0.gem
49
- - video_transcoding-0.1.1.gem
50
- - video_transcoding-0.1.2.gem
51
- - video_transcoding-0.1.3.gem
52
- - video_transcoding-0.1.4.gem
53
- - video_transcoding-0.2.0.gem
54
- - video_transcoding-0.2.1.gem
55
- - video_transcoding-0.2.2.gem
56
- - video_transcoding-0.2.3.gem
57
- - video_transcoding-0.2.4.gem
58
- - video_transcoding-0.2.5.gem
59
- - video_transcoding-0.2.6.gem
60
48
  - video_transcoding.gemspec
61
49
  homepage: https://github.com/donmelton/video_transcoding
62
50
  licenses:
@@ -78,7 +66,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
78
66
  version: '0'
79
67
  requirements: []
80
68
  rubyforge_project:
81
- rubygems_version: 2.4.5
69
+ rubygems_version: 2.5.1
82
70
  signing_key:
83
71
  specification_version: 4
84
72
  summary: Tools to transcode, inspect and convert videos.
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file