ffmpeg-screenrecorder 1.0.0.beta12 → 1.0.0.beta13
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +107 -107
- data/CHANGES.md +10 -2
- data/ffmpeg-screenrecorder.gemspec +4 -0
- data/lib/ffmpeg/version.rb +1 -1
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 21a33622726e2df8253dc4dfb0dafb19271b26c8c31635a8be8fac2ec39ec2a5
|
4
|
+
data.tar.gz: cab6ad25615f6bcd4de8685eb6891aa1f6a0aff585d955b9c63d7c8b5941f26f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '038b63c192815505dcde195a800a57bf89b990657857a02bf1e8dc422415c1020a2983279ebb7d7203b6e44b07ae4ab845879615465dd331ed4c1e1a2c463a3b'
|
7
|
+
data.tar.gz: 00303cad13805c58020f35dc30ebc126ec4ed83e91b2026d59fe924f02273622d88ffec51bdae8d1e4373a03bccbd078e7898d137db66703c4673a4f6bef70ac
|
data/.gitignore
CHANGED
@@ -1,108 +1,108 @@
|
|
1
|
-
Gemfile.lock # Part of best practice
|
2
|
-
|
3
|
-
# Created by https://www.gitignore.io/api/rubymine+all
|
4
|
-
|
5
|
-
### RubyMine+all ###
|
6
|
-
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
|
7
|
-
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
8
|
-
|
9
|
-
/.bundle/
|
10
|
-
/.yardoc
|
11
|
-
/_yardoc/
|
12
|
-
/coverage/
|
13
|
-
/doc/
|
14
|
-
/pkg/
|
15
|
-
/spec/reports/
|
16
|
-
/tmp/
|
17
|
-
/webdrivers_bin
|
18
|
-
*.log
|
19
|
-
*.mkv
|
20
|
-
*.mp4
|
21
|
-
*.avi
|
22
|
-
*.gif
|
23
|
-
|
24
|
-
Gemfile.lock
|
25
|
-
|
26
|
-
# rspec failure tracking
|
27
|
-
.rspec_status
|
28
|
-
|
29
|
-
# User-specific stuff
|
30
|
-
.idea/
|
31
|
-
.idea/**/workspace.xml
|
32
|
-
.idea/**/tasks.xml
|
33
|
-
.idea/**/usage.statistics.xml
|
34
|
-
.idea/**/dictionaries
|
35
|
-
.idea/**/shelf
|
36
|
-
|
37
|
-
# Generated files
|
38
|
-
.idea/**/contentModel.xml
|
39
|
-
|
40
|
-
# Sensitive or high-churn files
|
41
|
-
.idea/**/dataSources/
|
42
|
-
.idea/**/dataSources.ids
|
43
|
-
.idea/**/dataSources.local.xml
|
44
|
-
.idea/**/sqlDataSources.xml
|
45
|
-
.idea/**/dynamic.xml
|
46
|
-
.idea/**/uiDesigner.xml
|
47
|
-
.idea/**/dbnavigator.xml
|
48
|
-
|
49
|
-
# Gradle
|
50
|
-
.idea/**/gradle.xml
|
51
|
-
.idea/**/libraries
|
52
|
-
|
53
|
-
# Gradle and Maven with auto-import
|
54
|
-
# When using Gradle or Maven with auto-import, you should exclude module files,
|
55
|
-
# since they will be recreated, and may cause churn. Uncomment if using
|
56
|
-
# auto-import.
|
57
|
-
# .idea/modules.xml
|
58
|
-
# .idea/*.iml
|
59
|
-
# .idea/modules
|
60
|
-
|
61
|
-
# CMake
|
62
|
-
cmake-build-*/
|
63
|
-
|
64
|
-
# Mongo Explorer plugin
|
65
|
-
.idea/**/mongoSettings.xml
|
66
|
-
|
67
|
-
# File-based project format
|
68
|
-
*.iws
|
69
|
-
|
70
|
-
# IntelliJ
|
71
|
-
out/
|
72
|
-
|
73
|
-
# mpeltonen/sbt-idea plugin
|
74
|
-
.idea_modules/
|
75
|
-
|
76
|
-
# JIRA plugin
|
77
|
-
atlassian-ide-plugin.xml
|
78
|
-
|
79
|
-
# Cursive Clojure plugin
|
80
|
-
.idea/replstate.xml
|
81
|
-
|
82
|
-
# Crashlytics plugin (for Android Studio and IntelliJ)
|
83
|
-
com_crashlytics_export_strings.xml
|
84
|
-
crashlytics.properties
|
85
|
-
crashlytics-build.properties
|
86
|
-
fabric.properties
|
87
|
-
|
88
|
-
# Editor-based Rest Client
|
89
|
-
.idea/httpRequests
|
90
|
-
|
91
|
-
# Android studio 3.1+ serialized cache file
|
92
|
-
.idea/caches/build_file_checksums.ser
|
93
|
-
|
94
|
-
### RubyMine+all Patch ###
|
95
|
-
# Ignores the whole .idea folder and all .iml files
|
96
|
-
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
|
97
|
-
|
98
|
-
.idea/
|
99
|
-
|
100
|
-
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
|
101
|
-
|
102
|
-
*.iml
|
103
|
-
modules.xml
|
104
|
-
.idea/misc.xml
|
105
|
-
*.ipr
|
106
|
-
|
107
|
-
|
1
|
+
Gemfile.lock # Part of best practice
|
2
|
+
|
3
|
+
# Created by https://www.gitignore.io/api/rubymine+all
|
4
|
+
|
5
|
+
### RubyMine+all ###
|
6
|
+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
|
7
|
+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
8
|
+
|
9
|
+
/.bundle/
|
10
|
+
/.yardoc
|
11
|
+
/_yardoc/
|
12
|
+
/coverage/
|
13
|
+
/doc/
|
14
|
+
/pkg/
|
15
|
+
/spec/reports/
|
16
|
+
/tmp/
|
17
|
+
/webdrivers_bin
|
18
|
+
*.log
|
19
|
+
*.mkv
|
20
|
+
*.mp4
|
21
|
+
*.avi
|
22
|
+
*.gif
|
23
|
+
|
24
|
+
Gemfile.lock
|
25
|
+
|
26
|
+
# rspec failure tracking
|
27
|
+
.rspec_status
|
28
|
+
|
29
|
+
# User-specific stuff
|
30
|
+
.idea/
|
31
|
+
.idea/**/workspace.xml
|
32
|
+
.idea/**/tasks.xml
|
33
|
+
.idea/**/usage.statistics.xml
|
34
|
+
.idea/**/dictionaries
|
35
|
+
.idea/**/shelf
|
36
|
+
|
37
|
+
# Generated files
|
38
|
+
.idea/**/contentModel.xml
|
39
|
+
|
40
|
+
# Sensitive or high-churn files
|
41
|
+
.idea/**/dataSources/
|
42
|
+
.idea/**/dataSources.ids
|
43
|
+
.idea/**/dataSources.local.xml
|
44
|
+
.idea/**/sqlDataSources.xml
|
45
|
+
.idea/**/dynamic.xml
|
46
|
+
.idea/**/uiDesigner.xml
|
47
|
+
.idea/**/dbnavigator.xml
|
48
|
+
|
49
|
+
# Gradle
|
50
|
+
.idea/**/gradle.xml
|
51
|
+
.idea/**/libraries
|
52
|
+
|
53
|
+
# Gradle and Maven with auto-import
|
54
|
+
# When using Gradle or Maven with auto-import, you should exclude module files,
|
55
|
+
# since they will be recreated, and may cause churn. Uncomment if using
|
56
|
+
# auto-import.
|
57
|
+
# .idea/modules.xml
|
58
|
+
# .idea/*.iml
|
59
|
+
# .idea/modules
|
60
|
+
|
61
|
+
# CMake
|
62
|
+
cmake-build-*/
|
63
|
+
|
64
|
+
# Mongo Explorer plugin
|
65
|
+
.idea/**/mongoSettings.xml
|
66
|
+
|
67
|
+
# File-based project format
|
68
|
+
*.iws
|
69
|
+
|
70
|
+
# IntelliJ
|
71
|
+
out/
|
72
|
+
|
73
|
+
# mpeltonen/sbt-idea plugin
|
74
|
+
.idea_modules/
|
75
|
+
|
76
|
+
# JIRA plugin
|
77
|
+
atlassian-ide-plugin.xml
|
78
|
+
|
79
|
+
# Cursive Clojure plugin
|
80
|
+
.idea/replstate.xml
|
81
|
+
|
82
|
+
# Crashlytics plugin (for Android Studio and IntelliJ)
|
83
|
+
com_crashlytics_export_strings.xml
|
84
|
+
crashlytics.properties
|
85
|
+
crashlytics-build.properties
|
86
|
+
fabric.properties
|
87
|
+
|
88
|
+
# Editor-based Rest Client
|
89
|
+
.idea/httpRequests
|
90
|
+
|
91
|
+
# Android studio 3.1+ serialized cache file
|
92
|
+
.idea/caches/build_file_checksums.ser
|
93
|
+
|
94
|
+
### RubyMine+all Patch ###
|
95
|
+
# Ignores the whole .idea folder and all .iml files
|
96
|
+
# See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
|
97
|
+
|
98
|
+
.idea/
|
99
|
+
|
100
|
+
# Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
|
101
|
+
|
102
|
+
*.iml
|
103
|
+
modules.xml
|
104
|
+
.idea/misc.xml
|
105
|
+
*.ipr
|
106
|
+
|
107
|
+
|
108
108
|
# End of https://www.gitignore.io/api/rubymine+all
|
data/CHANGES.md
CHANGED
@@ -1,6 +1,14 @@
|
|
1
|
-
### 1.0.0.
|
1
|
+
### 1.0.0.beta13 (2019-03-15)
|
2
|
+
* Gem will now be renamed to `screen-recorder`. Please refer to Issue
|
3
|
+
[#45](https://github.com/kapoorlakshya/ffmpeg-screenrecorder/issues/45)
|
4
|
+
for more information.
|
5
|
+
|
6
|
+
### 1.0.0.beta12 (2019-03-12)
|
7
|
+
* Reverted post install message as `screen_recorder` is already taken.
|
8
|
+
|
9
|
+
### 1.0.0.beta11 (2019-03-12)
|
2
10
|
* Recording FPS (`framerate`) is defaulted to 15.0.
|
3
|
-
* Gem will
|
11
|
+
* Gem will soon be renamed to `screen_recorder`. Please refer to Issue
|
4
12
|
[#45](https://github.com/kapoorlakshya/ffmpeg-screenrecorder/issues/45)
|
5
13
|
for more information.
|
6
14
|
|
@@ -27,4 +27,8 @@ Gem::Specification.new do |spec|
|
|
27
27
|
|
28
28
|
spec.add_runtime_dependency 'os', '~> 0.9.0'
|
29
29
|
spec.add_runtime_dependency 'streamio-ffmpeg', '~> 1.0'
|
30
|
+
|
31
|
+
spec.post_install_message = 'PLEASE NOTE: ffmpeg-screenrecorder will soon be renamed to screen-recorder.\n' \
|
32
|
+
'Please refer to Issue #45 on GitHub for more information ' \
|
33
|
+
'(https://github.com/kapoorlakshya/ffmpeg-screenrecorder/issues/45). Thank you!'
|
30
34
|
end
|
data/lib/ffmpeg/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ffmpeg-screenrecorder
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.
|
4
|
+
version: 1.0.0.beta13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lakshya Kapoor
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-03-
|
11
|
+
date: 2019-03-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: pry-byebug
|
@@ -154,7 +154,9 @@ homepage: http://github.com/kapoorlakshya/ffmpeg-screenrecorder
|
|
154
154
|
licenses:
|
155
155
|
- MIT
|
156
156
|
metadata: {}
|
157
|
-
post_install_message:
|
157
|
+
post_install_message: 'PLEASE NOTE: ffmpeg-screenrecorder will soon be renamed to
|
158
|
+
screen-recorder.\nPlease refer to Issue #45 on GitHub for more information (https://github.com/kapoorlakshya/ffmpeg-screenrecorder/issues/45).
|
159
|
+
Thank you!'
|
158
160
|
rdoc_options: []
|
159
161
|
require_paths:
|
160
162
|
- lib
|