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 +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +8 -4
- data/lib/video2gif/version.rb +1 -1
- data/video2gif.gemspec +8 -7
- 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: bf55840fd13a21ca24b9c09d2b900d9b33d493be
|
4
|
+
data.tar.gz: 1da536359f007656b1164202f796a60e0b0613a5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7e06b4b11fa69b0c21ad0722f4e1bac80155cb2b90ff4d32b685a1813c7b80c3f2ce3aaee9dbe17df1ddd607508b7c56f3b9186a43569b1ce355d6866f272e1b
|
7
|
+
data.tar.gz: 61f144b527acbc8ed22f628145c83fdac6da5ed9e0ee617a976493a9ac6dab6235a6f1afdd4f314dda3c3e6fad77a7f2de7cf6b4ed7dc550a22a9a2a6e51edd3
|
data/Gemfile.lock
CHANGED
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 [
|
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 [
|
16
|
-
available in the system `$PATH`. If you can run `
|
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 [
|
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
|
data/lib/video2gif/version.rb
CHANGED
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
|
8
|
-
spec.version
|
9
|
-
spec.authors
|
10
|
-
spec.email
|
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
|
13
|
-
spec.
|
14
|
-
spec.
|
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.
|
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:
|
136
|
+
summary: Fully automated luxury gay space GIFs
|
137
137
|
test_files: []
|