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 +4 -4
- data/README.md +8 -15
- data/lib/mkv2m4v/transcoder.rb +2 -2
- data/lib/mkv2m4v/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ac5a9eb35480845b1369a5a9868009ca67a239c2
|
4
|
+
data.tar.gz: 7e38d54689ea529074b38629eaa941583538f43e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
13
|
+
---
|
14
14
|
|
15
|
-
**
|
16
|
-
[][gittip]
|
17
|
-
[][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
|
-
|
17
|
+
[][gratipay]
|
18
|
+
[][bitcoin]
|
25
19
|
[][codementor]
|
26
20
|
|
27
|
-
[
|
28
|
-
|
29
|
-
[
|
30
|
-
[bitcoin
|
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
|
data/lib/mkv2m4v/transcoder.rb
CHANGED
@@ -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
|
data/lib/mkv2m4v/version.rb
CHANGED
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.
|
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:
|
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.
|
142
|
+
rubygems_version: 2.4.5
|
143
143
|
signing_key:
|
144
144
|
specification_version: 4
|
145
145
|
summary: Makes Apple TV compatible videos
|