video_to_mp3 0.0.4 → 0.0.5
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.
- data/README.md +3 -4
- data/video_to_mp3.gemspec +1 -2
- metadata +1 -2
- data/LICENSE +0 -26
data/README.md
CHANGED
|
@@ -25,8 +25,8 @@ In your code
|
|
|
25
25
|
|
|
26
26
|
VideoToMp3.new.connvert_to_mp3("\path\to\video\file", "outputfile_name", "\destination\path")
|
|
27
27
|
|
|
28
|
-
if you do not
|
|
29
|
-
|
|
28
|
+
if you do not provide the output filename and destination path then inputfile name is set as
|
|
29
|
+
outputfile name and "mp3_files" directory get created if you do not provide the destination path
|
|
30
30
|
|
|
31
31
|
you can find the converted file at destination\path\outputfile_name.mp3
|
|
32
32
|
|
|
@@ -39,5 +39,4 @@ Also let me know if any one wish to write the test suite for it.
|
|
|
39
39
|
License
|
|
40
40
|
-------
|
|
41
41
|
|
|
42
|
-
video_to_mp3 is free software, and
|
|
43
|
-
redistributed under the terms specified in the MIT-LICENSE file.
|
|
42
|
+
video_to_mp3 is free software, and you are free to distribute it as is.
|
data/video_to_mp3.gemspec
CHANGED
|
@@ -2,7 +2,7 @@ $LOAD_PATH.push File.expand_path("../lib", __FILE__)
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = "video_to_mp3"
|
|
5
|
-
s.version = "0.0.
|
|
5
|
+
s.version = "0.0.5"
|
|
6
6
|
s.platform = Gem::Platform::RUBY
|
|
7
7
|
s.author = "Naveen Agarwal"
|
|
8
8
|
s.email = ["naveenagarwal287@gmail.com"]
|
|
@@ -22,7 +22,6 @@ Gem::Specification.new do |s|
|
|
|
22
22
|
s.files = [
|
|
23
23
|
"lib/video_to_mp3.rb",
|
|
24
24
|
"lib/errors/video_to_mp3_error.rb",
|
|
25
|
-
"LICENSE",
|
|
26
25
|
"README.md",
|
|
27
26
|
"video_to_mp3.gemspec"
|
|
28
27
|
]
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: video_to_mp3
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.5
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -20,7 +20,6 @@ extra_rdoc_files: []
|
|
|
20
20
|
files:
|
|
21
21
|
- lib/video_to_mp3.rb
|
|
22
22
|
- lib/errors/video_to_mp3_error.rb
|
|
23
|
-
- LICENSE
|
|
24
23
|
- README.md
|
|
25
24
|
- video_to_mp3.gemspec
|
|
26
25
|
homepage: https://github.com/naveenagarwal/video_to_mp3.git
|
data/LICENSE
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
LICENSE
|
|
3
|
-
|
|
4
|
-
The MIT License
|
|
5
|
-
|
|
6
|
-
Copyright (c) 2008 Jon Yurek and thoughtbot, inc.
|
|
7
|
-
|
|
8
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
9
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
10
|
-
in the Software without restriction, including without limitation the rights
|
|
11
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
12
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
13
|
-
furnished to do so, subject to the following conditions:
|
|
14
|
-
|
|
15
|
-
The above copyright notice and this permission notice shall be included in
|
|
16
|
-
all copies or substantial portions of the Software.
|
|
17
|
-
|
|
18
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
19
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
20
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
21
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
22
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
23
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
24
|
-
THE SOFTWARE.
|
|
25
|
-
|
|
26
|
-
|