mkv2m4v 1.2.0 → 1.2.1

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
  SHA1:
3
- metadata.gz: 8e0d5307bd4bdb0f342dddf7452fd6caad292e60
4
- data.tar.gz: 813e38f5d83749e84fb609e33bdbd0fdc16666ef
3
+ metadata.gz: ac5a9eb35480845b1369a5a9868009ca67a239c2
4
+ data.tar.gz: 7e38d54689ea529074b38629eaa941583538f43e
5
5
  SHA512:
6
- metadata.gz: e93752b23eca861d818ccf6026a5abcc970c411a5f366621183241265737845419adf39eea7995a4da1d988c18777dd8330446a3df21793901b23b50744dd668
7
- data.tar.gz: 9cd15130e5b1a536dc0d4fb63e7a11c6049802fdb8cb0484e4779d0265d37fbe0bf46cef1af0d0a370cda8943ba7e0c1c73a9acc43043cb654602d594d413d72
6
+ metadata.gz: 3391d58715790549c7cdb1a390c723479f9e73e93b6c4d714c0d67be405e41f6f498c6cf779b32db3dfa1ab1670c702cc1cd65362874f20dec4c93d080bbab1a
7
+ data.tar.gz: 784281036f098dbdaee4eb498d6932d1c3cf0c8804b068fb4e41a104250eb12f573f46382ea385ee79483ccb0d96804e52fe55a976e801504dcd89dc92fc22ab
data/README.md CHANGED
@@ -10,25 +10,18 @@ It attempts to pass through as many codecs as possible.
10
10
  * It will convert a DTS audio track into separate AAC and AC3 tracks.
11
11
  * If no DTS, it will pass through the original AAC and/or AC3 tracks.
12
12
 
13
- ## How You Can Help
13
+ ---
14
14
 
15
- **If you like this project, please help. [Donate via Gittip][gittip] or [buy me a coffee with Bitcoin][bitcoin].**<br>
16
- [![Gittip](http://img.shields.io/gittip/rmm5t.svg)][gittip]
17
- [![Bitcoin](http://img.shields.io/badge/bitcoin-buy%20me%20a%20coffee-brightgreen.svg)][bitcoin]
18
-
19
- **[Bitcoin][bitcoin]**: `1rmm5tv6f997JK5bLcGbRCZyVjZUPkQ2m`<br>
20
- [![Bitcoin Donation][bitcoin-qr-small]][bitcoin-qr-big]
21
-
22
- ## Need Help?
15
+ **How You Can Help**
23
16
 
24
- **You can [book a session with me on Codementor][codementor].**<br>
17
+ [![Gratipay](http://img.shields.io/gratipay/rmm5t.svg)][gratipay]
18
+ [![Bitcoin](http://img.shields.io/badge/bitcoin-buy%20me%20a%20coffee-brightgreen.svg)][bitcoin]
25
19
  [![Book a Codementor session](http://img.shields.io/badge/codementor-book%20a%20session-orange.svg)][codementor]
26
20
 
27
- [gittip]: https://www.gittip.com/rmm5t/ "Donate to rmm5t for open source!"
28
- [bitcoin]: https://blockchain.info/address/1rmm5tv6f997JK5bLcGbRCZyVjZUPkQ2m "Buy rmm5t a coffee for open source!"
29
- [bitcoin-scheme]: bitcoin:1rmm5tv6f997JK5bLcGbRCZyVjZUPkQ2m?amount=0.01&label=Coffee%20to%20rmm5t%20for%20Open%20Source "Buy rmm5t a coffee for open source!"
30
- [bitcoin-qr-small]: http://chart.apis.google.com/chart?cht=qr&chs=150x150&chl=bitcoin%3A1rmm5tv6f997JK5bLcGbRCZyVjZUPkQ2m%3Famount%3D0.01%26label%3DCoffee%2520to%2520rmm5t%2520for%2520Open%2520Source
31
- [bitcoin-qr-big]: http://chart.apis.google.com/chart?cht=qr&chs=500x500&chl=bitcoin%3A1rmm5tv6f997JK5bLcGbRCZyVjZUPkQ2m%3Famount%3D0.01%26label%3DCoffee%2520to%2520rmm5t%2520for%2520Open%2520Source
21
+ If you like this project, [donate via Gratipay][gratipay], [buy me a coffee with Bitcoin][bitcoin] `1rmm5tv6f997JK5bLcGbRCZyVjZUPkQ2m`, or [book a session with me on Codementor][codementor].<br>
22
+
23
+ [gratipay]: https://gratipay.com/rmm5t/ "Donate to rmm5t for open source!"
24
+ [bitcoin]: bitcoin:1rmm5tv6f997JK5bLcGbRCZyVjZUPkQ2m?amount=0.01&label=Coffee%20to%20rmm5t%20for%20Open%20Source "Buy rmm5t a coffee for open source!"
32
25
  [codementor]: https://www.codementor.io/rmm5t?utm_campaign=profile&utm_source=button-rmm5t&utm_medium=shields "Book a session with rmm5t on Codementor!"
33
26
 
34
27
  ## Installation
@@ -108,7 +108,7 @@ module Mkv2m4v
108
108
  if video_format == "AVC"
109
109
  "h264"
110
110
  else
111
- video_format.gsub(/\W/, "").downcase
111
+ video_format.to_s.gsub(/\W/, "").downcase
112
112
  end
113
113
  end
114
114
 
@@ -133,7 +133,7 @@ module Mkv2m4v
133
133
  end
134
134
 
135
135
  def audio_ext
136
- audio_format.gsub(/\W/, "").downcase
136
+ audio_format.to_s.gsub(/\W/, "").downcase
137
137
  end
138
138
 
139
139
  def audio_language
@@ -1,5 +1,5 @@
1
1
  module Mkv2m4v
2
- VERSION = "1.2.0"
2
+ VERSION = "1.2.1"
3
3
 
4
4
  VersionDescription = "mkv2m4v #{VERSION} (c) 2012-2014 Ryan McGeary"
5
5
  Description = <<EOS
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mkv2m4v
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan McGeary
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-12-13 00:00:00.000000000 Z
11
+ date: 2015-02-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: trollop
@@ -139,7 +139,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
139
139
  version: '0'
140
140
  requirements: []
141
141
  rubyforge_project:
142
- rubygems_version: 2.2.2
142
+ rubygems_version: 2.4.5
143
143
  signing_key:
144
144
  specification_version: 4
145
145
  summary: Makes Apple TV compatible videos