video2gif 0.0.15 → 0.0.16

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: 5102469550d9ca987a8ccf7687f0ba9277936901
4
- data.tar.gz: f12e967a13f1c758f16af5c65325c79d563c9439
3
+ metadata.gz: bf55840fd13a21ca24b9c09d2b900d9b33d493be
4
+ data.tar.gz: 1da536359f007656b1164202f796a60e0b0613a5
5
5
  SHA512:
6
- metadata.gz: 4b413a8771ebce66c02c41243748bc330398310b6756e93b349a9a3dd508bb9a337e8063a448d06f9fba29df68fa97928cba40ea6b38bff84fde582f6b166f31
7
- data.tar.gz: 15890374f569f40aef9e0ed72e789e5a8f08b7bcfbc7b6bec0af5186a611423da3230e662273dcea5198013bef6201e387aa5b33987e353b1139e1157cfd1c96
6
+ metadata.gz: 7e06b4b11fa69b0c21ad0722f4e1bac80155cb2b90ff4d32b685a1813c7b80c3f2ce3aaee9dbe17df1ddd607508b7c56f3b9186a43569b1ce355d6866f272e1b
7
+ data.tar.gz: 61f144b527acbc8ed22f628145c83fdac6da5ed9e0ee617a976493a9ac6dab6235a6f1afdd4f314dda3c3e6fad77a7f2de7cf6b4ed7dc550a22a9a2a6e51edd3
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- video2gif (0.0.15)
4
+ video2gif (0.0.16)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -3,7 +3,7 @@ video2gif
3
3
 
4
4
  `video2gif` eases converting any video into a GIF.
5
5
 
6
- It uses [FFMpeg], so it understands any video that [FFMpeg] does. It has
6
+ It uses [FFmpeg], so it understands any video that [FFmpeg] does. It has
7
7
  an array of options to allow you to select the part of the video you
8
8
  want, crop it automatically, overlay text, and manipulate the color and
9
9
  brightness.
@@ -12,14 +12,14 @@ brightness.
12
12
  Installation
13
13
  ------------
14
14
 
15
- `video2gif` requires a recent version of [FFMpeg] installed and
16
- available in the system `$PATH`. If you can run `ffmpeg` from the
15
+ `video2gif` requires a recent version of [FFmpeg] installed and
16
+ available in the system `$PATH`. If you can run `FFmpeg` from the
17
17
  command line, you're probably good. If not, use your favorite package
18
18
  manager to install it.
19
19
 
20
20
  Note that some features may not be available by default. For example,
21
21
  tonemapping (used for HDR videos) requires `libzimg` support, not
22
- included by default in the [FFMpeg] supplied by [Homebrew].
22
+ included by default in the [FFmpeg] supplied by [Homebrew].
23
23
 
24
24
  `video2gif` also requires Ruby and the ability to install a new gem. If
25
25
  you have this available, run the following command to install it.
@@ -58,3 +58,7 @@ To contribute to this plugin, find it on GitHub. Please see the
58
58
  guidelines.
59
59
 
60
60
  https://github.com/emilyst/video2gif
61
+
62
+
63
+ [FFmpeg]: https://ffmpeg.org
64
+ [Homebrew]: https://brew.sh
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Video2gif
4
- VERSION = '0.0.15'
4
+ VERSION = '0.0.16'
5
5
  end
data/video2gif.gemspec CHANGED
@@ -4,14 +4,15 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
  require 'video2gif/version'
5
5
 
6
6
  Gem::Specification.new do |spec|
7
- spec.name = 'video2gif'
8
- spec.version = Video2gif::VERSION
9
- spec.authors = ['Emily St.']
10
- spec.email = ['hello@emily.st']
7
+ spec.name = 'video2gif'
8
+ spec.version = Video2gif::VERSION
9
+ spec.authors = ['Emily St.']
10
+ spec.email = ['hello@emily.st']
11
11
 
12
- spec.summary = %q{Automate converting videos to GIFs using FFMpeg}
13
- spec.homepage = 'https://github.com/emilyst/video2gif'
14
- spec.license = 'CC0'
12
+ spec.summary = %q{Fully automated luxury gay space GIFs}
13
+ spec.description = %q{Simple script to automate using FFMpeg to create GIFs from any video}
14
+ spec.homepage = 'https://github.com/emilyst/video2gif'
15
+ spec.license = 'CC0'
15
16
 
16
17
  # Prevent pushing this gem to RubyGems.org. To allow pushes either set
17
18
  # the 'allowed_push_host' to allow pushing to a single host or delete
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: video2gif
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.15
4
+ version: 0.0.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Emily St.
@@ -80,7 +80,7 @@ dependencies:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
82
  version: '3.0'
83
- description:
83
+ description: Simple script to automate using FFMpeg to create GIFs from any video
84
84
  email:
85
85
  - hello@emily.st
86
86
  executables:
@@ -133,5 +133,5 @@ rubyforge_project:
133
133
  rubygems_version: 2.5.2
134
134
  signing_key:
135
135
  specification_version: 4
136
- summary: Automate converting videos to GIFs using FFMpeg
136
+ summary: Fully automated luxury gay space GIFs
137
137
  test_files: []