video_file 0.1.0
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 +7 -0
- data/.gitignore +84 -0
- data/.travis.yml +7 -0
- data/CMakeLists.txt +28 -0
- data/CMakeLists.txt.user +375 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +29 -0
- data/LICENSE +339 -0
- data/README.md +48 -0
- data/Rakefile +16 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/ext/video_file_ext/ext.c +243 -0
- data/ext/video_file_ext/extconf.rb +8 -0
- data/ext/video_file_ext/vf-core.h +21 -0
- data/ext/video_file_ext/vf-file.c +124 -0
- data/ext/video_file_ext/vf-file.h +50 -0
- data/ext/video_file_ext/vf-thumbnailer.c +432 -0
- data/ext/video_file_ext/vf-thumbnailer.h +54 -0
- data/ext/video_file_ext/vf-util.c +1 -0
- data/ext/video_file_ext/vf-util.h +6 -0
- data/lib/video_file/version.rb +3 -0
- data/lib/video_file.rb +16 -0
- data/video_file.gemspec +33 -0
- metadata +151 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 07dc12f8d9cb04c871af4f1643f4d0e48d225989cc1d651a1c08c185f5a6ab81
|
4
|
+
data.tar.gz: 941df4b9e058b79aa84ab9c54c605aea3312adf8bdd94b65c2c3e49c20216d98
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 2341339f983f200a532258cc1e3237d403218626eea4f26ec534399c9d14ba26338a24cea22a9db2197448e616f84ac5f0899cc0186f221dd4170a80a4d4d1ac
|
7
|
+
data.tar.gz: 422b51b2d1d1f2d37c8ac808abb032e29ac8d0711acc8ab211192cdba801e701b8b35aeb884d3a977d697dcba191017c180cb8e4fa0ed4dd0b63ce6a05b11db0
|
data/.gitignore
ADDED
@@ -0,0 +1,84 @@
|
|
1
|
+
# This file is used to ignore files which are generated
|
2
|
+
# ----------------------------------------------------------------------------
|
3
|
+
|
4
|
+
*~
|
5
|
+
*.autosave
|
6
|
+
*.a
|
7
|
+
*.core
|
8
|
+
*.moc
|
9
|
+
*.o
|
10
|
+
*.obj
|
11
|
+
*.orig
|
12
|
+
*.rej
|
13
|
+
*.so
|
14
|
+
*.so.*
|
15
|
+
*_pch.h.cpp
|
16
|
+
*_resource.rc
|
17
|
+
*.qm
|
18
|
+
.#*
|
19
|
+
*.*#
|
20
|
+
core
|
21
|
+
!core/
|
22
|
+
tags
|
23
|
+
.DS_Store
|
24
|
+
.directory
|
25
|
+
*.debug
|
26
|
+
Makefile*
|
27
|
+
*.prl
|
28
|
+
*.app
|
29
|
+
moc_*.cpp
|
30
|
+
ui_*.h
|
31
|
+
qrc_*.cpp
|
32
|
+
Thumbs.db
|
33
|
+
*.res
|
34
|
+
*.rc
|
35
|
+
/.qmake.cache
|
36
|
+
/.qmake.stash
|
37
|
+
|
38
|
+
# qtcreator generated files
|
39
|
+
*.pro.user*
|
40
|
+
|
41
|
+
# xemacs temporary files
|
42
|
+
*.flc
|
43
|
+
|
44
|
+
# Vim temporary files
|
45
|
+
.*.swp
|
46
|
+
|
47
|
+
# Visual Studio generated files
|
48
|
+
*.ib_pdb_index
|
49
|
+
*.idb
|
50
|
+
*.ilk
|
51
|
+
*.pdb
|
52
|
+
*.sln
|
53
|
+
*.suo
|
54
|
+
*.vcproj
|
55
|
+
*vcproj.*.*.user
|
56
|
+
*.ncb
|
57
|
+
*.sdf
|
58
|
+
*.opensdf
|
59
|
+
*.vcxproj
|
60
|
+
*vcxproj.*
|
61
|
+
|
62
|
+
# MinGW generated files
|
63
|
+
*.Debug
|
64
|
+
*.Release
|
65
|
+
|
66
|
+
# Python byte code
|
67
|
+
*.pyc
|
68
|
+
|
69
|
+
# Binaries
|
70
|
+
# --------
|
71
|
+
*.dll
|
72
|
+
*.exe
|
73
|
+
/build-Desktop-Default
|
74
|
+
/build-Desktop-Debug
|
75
|
+
|
76
|
+
/.bundle/
|
77
|
+
/.yardoc
|
78
|
+
/_yardoc/
|
79
|
+
/coverage/
|
80
|
+
/doc/
|
81
|
+
/pkg/
|
82
|
+
/spec/reports/
|
83
|
+
/tmp/
|
84
|
+
|
data/.travis.yml
ADDED
data/CMakeLists.txt
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
cmake_minimum_required(VERSION 3.5)
|
2
|
+
project(video_file)
|
3
|
+
find_package(PkgConfig REQUIRED)
|
4
|
+
|
5
|
+
set(CMAKE_C_STANDARD 11)
|
6
|
+
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall -Wextra")
|
7
|
+
set(SOURCE_FILES
|
8
|
+
ext/video_file_ext/ext.c
|
9
|
+
ext/video_file_ext/vf-thumbnailer.c
|
10
|
+
ext/video_file_ext/vf-thumbnailer.h
|
11
|
+
ext/video_file_ext/vf-util.c
|
12
|
+
ext/video_file_ext/vf-util.h
|
13
|
+
ext/video_file_ext/vf-file.c
|
14
|
+
ext/video_file_ext/vf-file.h
|
15
|
+
)
|
16
|
+
pkg_check_modules(LIBAV REQUIRED libavutil libavformat libavcodec libswscale)
|
17
|
+
pkg_check_modules(JPEG REQUIRED libturbojpeg)
|
18
|
+
|
19
|
+
find_package (Threads REQUIRED)
|
20
|
+
find_package(Ruby REQUIRED)
|
21
|
+
|
22
|
+
add_library(video_file_ext SHARED ${SOURCE_FILES})
|
23
|
+
|
24
|
+
set_target_properties(video_file_ext PROPERTIES PREFIX "")
|
25
|
+
set_target_properties(video_file_ext PROPERTIES LIBRARY_OUTPUT_DIRECTORY "${PROJECT_SOURCE_DIR}/lib")
|
26
|
+
target_compile_definitions(video_file_ext PRIVATE AV_ENABLE_DEBUG)
|
27
|
+
target_include_directories(video_file_ext PRIVATE ${RUBY_INCLUDE_DIRS})
|
28
|
+
target_link_libraries(video_file_ext ${LIBAV_LIBRARIES} ${JPEG_LIBRARIES} ${RUBY_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT})
|
data/CMakeLists.txt.user
ADDED
@@ -0,0 +1,375 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!DOCTYPE QtCreatorProject>
|
3
|
+
<!-- Written by QtCreator 4.6.2, 2019-03-12T15:53:44. -->
|
4
|
+
<qtcreator>
|
5
|
+
<data>
|
6
|
+
<variable>EnvironmentId</variable>
|
7
|
+
<value type="QByteArray">{b6569068-f020-4539-8980-74633bf2ebe3}</value>
|
8
|
+
</data>
|
9
|
+
<data>
|
10
|
+
<variable>ProjectExplorer.Project.ActiveTarget</variable>
|
11
|
+
<value type="int">0</value>
|
12
|
+
</data>
|
13
|
+
<data>
|
14
|
+
<variable>ProjectExplorer.Project.EditorSettings</variable>
|
15
|
+
<valuemap type="QVariantMap">
|
16
|
+
<value type="bool" key="EditorConfiguration.AutoIndent">true</value>
|
17
|
+
<value type="bool" key="EditorConfiguration.AutoSpacesForTabs">false</value>
|
18
|
+
<value type="bool" key="EditorConfiguration.CamelCaseNavigation">true</value>
|
19
|
+
<valuemap type="QVariantMap" key="EditorConfiguration.CodeStyle.0">
|
20
|
+
<value type="QString" key="language">Cpp</value>
|
21
|
+
<valuemap type="QVariantMap" key="value">
|
22
|
+
<value type="QByteArray" key="CurrentPreferences">CppGlobal</value>
|
23
|
+
</valuemap>
|
24
|
+
</valuemap>
|
25
|
+
<valuemap type="QVariantMap" key="EditorConfiguration.CodeStyle.1">
|
26
|
+
<value type="QString" key="language">QmlJS</value>
|
27
|
+
<valuemap type="QVariantMap" key="value">
|
28
|
+
<value type="QByteArray" key="CurrentPreferences">QmlJSGlobal</value>
|
29
|
+
</valuemap>
|
30
|
+
</valuemap>
|
31
|
+
<value type="int" key="EditorConfiguration.CodeStyle.Count">2</value>
|
32
|
+
<value type="QByteArray" key="EditorConfiguration.Codec">UTF-8</value>
|
33
|
+
<value type="bool" key="EditorConfiguration.ConstrainTooltips">false</value>
|
34
|
+
<value type="int" key="EditorConfiguration.IndentSize">4</value>
|
35
|
+
<value type="bool" key="EditorConfiguration.KeyboardTooltips">false</value>
|
36
|
+
<value type="int" key="EditorConfiguration.MarginColumn">80</value>
|
37
|
+
<value type="bool" key="EditorConfiguration.MouseHiding">true</value>
|
38
|
+
<value type="bool" key="EditorConfiguration.MouseNavigation">true</value>
|
39
|
+
<value type="int" key="EditorConfiguration.PaddingMode">1</value>
|
40
|
+
<value type="bool" key="EditorConfiguration.ScrollWheelZooming">true</value>
|
41
|
+
<value type="bool" key="EditorConfiguration.ShowMargin">false</value>
|
42
|
+
<value type="int" key="EditorConfiguration.SmartBackspaceBehavior">0</value>
|
43
|
+
<value type="bool" key="EditorConfiguration.SmartSelectionChanging">true</value>
|
44
|
+
<value type="bool" key="EditorConfiguration.SpacesForTabs">true</value>
|
45
|
+
<value type="int" key="EditorConfiguration.TabKeyBehavior">0</value>
|
46
|
+
<value type="int" key="EditorConfiguration.TabSize">8</value>
|
47
|
+
<value type="bool" key="EditorConfiguration.UseGlobal">true</value>
|
48
|
+
<value type="int" key="EditorConfiguration.Utf8BomBehavior">1</value>
|
49
|
+
<value type="bool" key="EditorConfiguration.addFinalNewLine">true</value>
|
50
|
+
<value type="bool" key="EditorConfiguration.cleanIndentation">true</value>
|
51
|
+
<value type="bool" key="EditorConfiguration.cleanWhitespace">true</value>
|
52
|
+
<value type="bool" key="EditorConfiguration.inEntireDocument">false</value>
|
53
|
+
</valuemap>
|
54
|
+
</data>
|
55
|
+
<data>
|
56
|
+
<variable>ProjectExplorer.Project.PluginSettings</variable>
|
57
|
+
<valuemap type="QVariantMap">
|
58
|
+
<valuelist type="QVariantList" key="ClangCodeModel.CustomCommandLineKey"/>
|
59
|
+
<value type="bool" key="ClangCodeModel.UseGlobalConfig">true</value>
|
60
|
+
</valuemap>
|
61
|
+
</data>
|
62
|
+
<data>
|
63
|
+
<variable>ProjectExplorer.Project.Target.0</variable>
|
64
|
+
<valuemap type="QVariantMap">
|
65
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Desktop</value>
|
66
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Desktop</value>
|
67
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">{11228c17-030f-4f5b-856b-9873addde8b2}</value>
|
68
|
+
<value type="int" key="ProjectExplorer.Target.ActiveBuildConfiguration">0</value>
|
69
|
+
<value type="int" key="ProjectExplorer.Target.ActiveDeployConfiguration">0</value>
|
70
|
+
<value type="int" key="ProjectExplorer.Target.ActiveRunConfiguration">0</value>
|
71
|
+
<valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.0">
|
72
|
+
<valuelist type="QVariantList" key="CMake.Configuration"/>
|
73
|
+
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/user/projects/video_file/build-Desktop-Default</value>
|
74
|
+
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
|
75
|
+
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
|
76
|
+
<value type="QString" key="CMakeProjectManager.MakeStep.AdditionalArguments"></value>
|
77
|
+
<valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
|
78
|
+
<value type="QString">all</value>
|
79
|
+
</valuelist>
|
80
|
+
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
81
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">CMake Build</value>
|
82
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
83
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
|
84
|
+
</valuemap>
|
85
|
+
<value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
|
86
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
|
87
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
88
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
|
89
|
+
</valuemap>
|
90
|
+
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
|
91
|
+
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
|
92
|
+
<value type="QString" key="CMakeProjectManager.MakeStep.AdditionalArguments"></value>
|
93
|
+
<valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
|
94
|
+
<value type="QString">all</value>
|
95
|
+
</valuelist>
|
96
|
+
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
97
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">CMake Build</value>
|
98
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
99
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
|
100
|
+
</valuemap>
|
101
|
+
<value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
|
102
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</value>
|
103
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
104
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
|
105
|
+
</valuemap>
|
106
|
+
<value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
|
107
|
+
<value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
|
108
|
+
<valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
|
109
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Default</value>
|
110
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Default</value>
|
111
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.CMakeBuildConfiguration</value>
|
112
|
+
</valuemap>
|
113
|
+
<valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.1">
|
114
|
+
<valuelist type="QVariantList" key="CMake.Configuration">
|
115
|
+
<value type="QString">CMAKE_BUILD_TYPE:STRING=Debug</value>
|
116
|
+
</valuelist>
|
117
|
+
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/user/projects/video_file/build-Desktop-Debug</value>
|
118
|
+
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
|
119
|
+
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
|
120
|
+
<value type="QString" key="CMakeProjectManager.MakeStep.AdditionalArguments"></value>
|
121
|
+
<valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
|
122
|
+
<value type="QString">all</value>
|
123
|
+
</valuelist>
|
124
|
+
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
125
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">CMake Build</value>
|
126
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
127
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
|
128
|
+
</valuemap>
|
129
|
+
<value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
|
130
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
|
131
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
132
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
|
133
|
+
</valuemap>
|
134
|
+
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
|
135
|
+
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
|
136
|
+
<value type="QString" key="CMakeProjectManager.MakeStep.AdditionalArguments"></value>
|
137
|
+
<valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
|
138
|
+
<value type="QString">all</value>
|
139
|
+
</valuelist>
|
140
|
+
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
141
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">CMake Build</value>
|
142
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
143
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
|
144
|
+
</valuemap>
|
145
|
+
<value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
|
146
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</value>
|
147
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
148
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
|
149
|
+
</valuemap>
|
150
|
+
<value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
|
151
|
+
<value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
|
152
|
+
<valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
|
153
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Debug</value>
|
154
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Debug</value>
|
155
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.CMakeBuildConfiguration</value>
|
156
|
+
</valuemap>
|
157
|
+
<valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.2">
|
158
|
+
<valuelist type="QVariantList" key="CMake.Configuration">
|
159
|
+
<value type="QString">CMAKE_BUILD_TYPE:STRING=Release</value>
|
160
|
+
</valuelist>
|
161
|
+
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/user/projects/video_file/build-Desktop-Release</value>
|
162
|
+
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
|
163
|
+
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
|
164
|
+
<value type="QString" key="CMakeProjectManager.MakeStep.AdditionalArguments"></value>
|
165
|
+
<valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
|
166
|
+
<value type="QString">all</value>
|
167
|
+
</valuelist>
|
168
|
+
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
169
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">CMake Build</value>
|
170
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
171
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
|
172
|
+
</valuemap>
|
173
|
+
<value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
|
174
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
|
175
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
176
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
|
177
|
+
</valuemap>
|
178
|
+
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
|
179
|
+
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
|
180
|
+
<value type="QString" key="CMakeProjectManager.MakeStep.AdditionalArguments"></value>
|
181
|
+
<valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
|
182
|
+
<value type="QString">all</value>
|
183
|
+
</valuelist>
|
184
|
+
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
185
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">CMake Build</value>
|
186
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
187
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
|
188
|
+
</valuemap>
|
189
|
+
<value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
|
190
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</value>
|
191
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
192
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
|
193
|
+
</valuemap>
|
194
|
+
<value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
|
195
|
+
<value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
|
196
|
+
<valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
|
197
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Release</value>
|
198
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Release</value>
|
199
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.CMakeBuildConfiguration</value>
|
200
|
+
</valuemap>
|
201
|
+
<valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.3">
|
202
|
+
<valuelist type="QVariantList" key="CMake.Configuration">
|
203
|
+
<value type="QString">CMAKE_BUILD_TYPE:STRING=RelWithDebInfo</value>
|
204
|
+
</valuelist>
|
205
|
+
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/user/projects/video_file/build-Desktop-Release with Debug Information</value>
|
206
|
+
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
|
207
|
+
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
|
208
|
+
<value type="QString" key="CMakeProjectManager.MakeStep.AdditionalArguments"></value>
|
209
|
+
<valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
|
210
|
+
<value type="QString">all</value>
|
211
|
+
</valuelist>
|
212
|
+
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
213
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">CMake Build</value>
|
214
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
215
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
|
216
|
+
</valuemap>
|
217
|
+
<value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
|
218
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
|
219
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
220
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
|
221
|
+
</valuemap>
|
222
|
+
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
|
223
|
+
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
|
224
|
+
<value type="QString" key="CMakeProjectManager.MakeStep.AdditionalArguments"></value>
|
225
|
+
<valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
|
226
|
+
<value type="QString">all</value>
|
227
|
+
</valuelist>
|
228
|
+
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
229
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">CMake Build</value>
|
230
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
231
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
|
232
|
+
</valuemap>
|
233
|
+
<value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
|
234
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</value>
|
235
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
236
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
|
237
|
+
</valuemap>
|
238
|
+
<value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
|
239
|
+
<value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
|
240
|
+
<valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
|
241
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Release with Debug Information</value>
|
242
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Release with Debug Information</value>
|
243
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.CMakeBuildConfiguration</value>
|
244
|
+
</valuemap>
|
245
|
+
<valuemap type="QVariantMap" key="ProjectExplorer.Target.BuildConfiguration.4">
|
246
|
+
<valuelist type="QVariantList" key="CMake.Configuration">
|
247
|
+
<value type="QString">CMAKE_BUILD_TYPE:STRING=MinSizeRel</value>
|
248
|
+
</valuelist>
|
249
|
+
<value type="QString" key="ProjectExplorer.BuildConfiguration.BuildDirectory">/home/user/projects/video_file/build-Desktop-Minimum Size Release</value>
|
250
|
+
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
|
251
|
+
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
|
252
|
+
<value type="QString" key="CMakeProjectManager.MakeStep.AdditionalArguments"></value>
|
253
|
+
<valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
|
254
|
+
<value type="QString">all</value>
|
255
|
+
</valuelist>
|
256
|
+
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
257
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">CMake Build</value>
|
258
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
259
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
|
260
|
+
</valuemap>
|
261
|
+
<value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
|
262
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Build</value>
|
263
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
264
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Build</value>
|
265
|
+
</valuemap>
|
266
|
+
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.1">
|
267
|
+
<valuemap type="QVariantMap" key="ProjectExplorer.BuildStepList.Step.0">
|
268
|
+
<value type="QString" key="CMakeProjectManager.MakeStep.AdditionalArguments"></value>
|
269
|
+
<valuelist type="QVariantList" key="CMakeProjectManager.MakeStep.BuildTargets">
|
270
|
+
<value type="QString">all</value>
|
271
|
+
</valuelist>
|
272
|
+
<value type="bool" key="ProjectExplorer.BuildStep.Enabled">true</value>
|
273
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">CMake Build</value>
|
274
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
275
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.MakeStep</value>
|
276
|
+
</valuemap>
|
277
|
+
<value type="int" key="ProjectExplorer.BuildStepList.StepsCount">1</value>
|
278
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Clean</value>
|
279
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
280
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Clean</value>
|
281
|
+
</valuemap>
|
282
|
+
<value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">2</value>
|
283
|
+
<value type="bool" key="ProjectExplorer.BuildConfiguration.ClearSystemEnvironment">false</value>
|
284
|
+
<valuelist type="QVariantList" key="ProjectExplorer.BuildConfiguration.UserEnvironmentChanges"/>
|
285
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Minimum Size Release</value>
|
286
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName">Minimum Size Release</value>
|
287
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.CMakeBuildConfiguration</value>
|
288
|
+
</valuemap>
|
289
|
+
<value type="int" key="ProjectExplorer.Target.BuildConfigurationCount">5</value>
|
290
|
+
<valuemap type="QVariantMap" key="ProjectExplorer.Target.DeployConfiguration.0">
|
291
|
+
<valuemap type="QVariantMap" key="ProjectExplorer.BuildConfiguration.BuildStepList.0">
|
292
|
+
<value type="int" key="ProjectExplorer.BuildStepList.StepsCount">0</value>
|
293
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Deploy</value>
|
294
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
295
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.BuildSteps.Deploy</value>
|
296
|
+
</valuemap>
|
297
|
+
<value type="int" key="ProjectExplorer.BuildConfiguration.BuildStepListCount">1</value>
|
298
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">Deploy Configuration</value>
|
299
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
300
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">ProjectExplorer.DefaultDeployConfiguration</value>
|
301
|
+
</valuemap>
|
302
|
+
<value type="int" key="ProjectExplorer.Target.DeployConfigurationCount">1</value>
|
303
|
+
<valuemap type="QVariantMap" key="ProjectExplorer.Target.PluginSettings"/>
|
304
|
+
<valuemap type="QVariantMap" key="ProjectExplorer.Target.RunConfiguration.0">
|
305
|
+
<value type="bool" key="Analyzer.QmlProfiler.AggregateTraces">false</value>
|
306
|
+
<value type="bool" key="Analyzer.QmlProfiler.FlushEnabled">false</value>
|
307
|
+
<value type="uint" key="Analyzer.QmlProfiler.FlushInterval">1000</value>
|
308
|
+
<value type="QString" key="Analyzer.QmlProfiler.LastTraceFile"></value>
|
309
|
+
<value type="bool" key="Analyzer.QmlProfiler.Settings.UseGlobalSettings">true</value>
|
310
|
+
<valuelist type="QVariantList" key="Analyzer.Valgrind.AddedSuppressionFiles"/>
|
311
|
+
<value type="bool" key="Analyzer.Valgrind.Callgrind.CollectBusEvents">false</value>
|
312
|
+
<value type="bool" key="Analyzer.Valgrind.Callgrind.CollectSystime">false</value>
|
313
|
+
<value type="bool" key="Analyzer.Valgrind.Callgrind.EnableBranchSim">false</value>
|
314
|
+
<value type="bool" key="Analyzer.Valgrind.Callgrind.EnableCacheSim">false</value>
|
315
|
+
<value type="bool" key="Analyzer.Valgrind.Callgrind.EnableEventToolTips">true</value>
|
316
|
+
<value type="double" key="Analyzer.Valgrind.Callgrind.MinimumCostRatio">0.01</value>
|
317
|
+
<value type="double" key="Analyzer.Valgrind.Callgrind.VisualisationMinimumCostRatio">10</value>
|
318
|
+
<value type="bool" key="Analyzer.Valgrind.FilterExternalIssues">true</value>
|
319
|
+
<value type="int" key="Analyzer.Valgrind.LeakCheckOnFinish">1</value>
|
320
|
+
<value type="int" key="Analyzer.Valgrind.NumCallers">25</value>
|
321
|
+
<valuelist type="QVariantList" key="Analyzer.Valgrind.RemovedSuppressionFiles"/>
|
322
|
+
<value type="int" key="Analyzer.Valgrind.SelfModifyingCodeDetection">1</value>
|
323
|
+
<value type="bool" key="Analyzer.Valgrind.Settings.UseGlobalSettings">true</value>
|
324
|
+
<value type="bool" key="Analyzer.Valgrind.ShowReachable">false</value>
|
325
|
+
<value type="bool" key="Analyzer.Valgrind.TrackOrigins">true</value>
|
326
|
+
<value type="QString" key="Analyzer.Valgrind.ValgrindExecutable">valgrind</value>
|
327
|
+
<valuelist type="QVariantList" key="Analyzer.Valgrind.VisibleErrorKinds">
|
328
|
+
<value type="int">0</value>
|
329
|
+
<value type="int">1</value>
|
330
|
+
<value type="int">2</value>
|
331
|
+
<value type="int">3</value>
|
332
|
+
<value type="int">4</value>
|
333
|
+
<value type="int">5</value>
|
334
|
+
<value type="int">6</value>
|
335
|
+
<value type="int">7</value>
|
336
|
+
<value type="int">8</value>
|
337
|
+
<value type="int">9</value>
|
338
|
+
<value type="int">10</value>
|
339
|
+
<value type="int">11</value>
|
340
|
+
<value type="int">12</value>
|
341
|
+
<value type="int">13</value>
|
342
|
+
<value type="int">14</value>
|
343
|
+
</valuelist>
|
344
|
+
<value type="QString" key="CMakeProjectManager.CMakeRunConfiguation.Title">video_file</value>
|
345
|
+
<value type="QString" key="CMakeProjectManager.CMakeRunConfiguration.Arguments"></value>
|
346
|
+
<value type="QString" key="CMakeProjectManager.CMakeRunConfiguration.UserWorkingDirectory"></value>
|
347
|
+
<value type="QString" key="CMakeProjectManager.CMakeRunConfiguration.UserWorkingDirectory.default"></value>
|
348
|
+
<value type="int" key="PE.EnvironmentAspect.Base">2</value>
|
349
|
+
<valuelist type="QVariantList" key="PE.EnvironmentAspect.Changes"/>
|
350
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DefaultDisplayName">video_file</value>
|
351
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
|
352
|
+
<value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">CMakeProjectManager.CMakeRunConfiguration.video_file</value>
|
353
|
+
<value type="uint" key="RunConfiguration.QmlDebugServerPort">3768</value>
|
354
|
+
<value type="bool" key="RunConfiguration.UseCppDebugger">false</value>
|
355
|
+
<value type="bool" key="RunConfiguration.UseCppDebuggerAuto">true</value>
|
356
|
+
<value type="bool" key="RunConfiguration.UseMultiProcess">false</value>
|
357
|
+
<value type="bool" key="RunConfiguration.UseQmlDebugger">false</value>
|
358
|
+
<value type="bool" key="RunConfiguration.UseQmlDebuggerAuto">true</value>
|
359
|
+
</valuemap>
|
360
|
+
<value type="int" key="ProjectExplorer.Target.RunConfigurationCount">1</value>
|
361
|
+
</valuemap>
|
362
|
+
</data>
|
363
|
+
<data>
|
364
|
+
<variable>ProjectExplorer.Project.TargetCount</variable>
|
365
|
+
<value type="int">1</value>
|
366
|
+
</data>
|
367
|
+
<data>
|
368
|
+
<variable>ProjectExplorer.Project.Updater.FileVersion</variable>
|
369
|
+
<value type="int">18</value>
|
370
|
+
</data>
|
371
|
+
<data>
|
372
|
+
<variable>Version</variable>
|
373
|
+
<value type="int">18</value>
|
374
|
+
</data>
|
375
|
+
</qtcreator>
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
video_file (0.1.0)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: https://rubygems.org/
|
8
|
+
specs:
|
9
|
+
minitest (5.11.3)
|
10
|
+
rake (10.5.0)
|
11
|
+
rake-compiler (1.0.7)
|
12
|
+
rake
|
13
|
+
rmagick (3.0.0)
|
14
|
+
yard (0.9.18)
|
15
|
+
|
16
|
+
PLATFORMS
|
17
|
+
ruby
|
18
|
+
|
19
|
+
DEPENDENCIES
|
20
|
+
bundler (~> 2.0)
|
21
|
+
minitest (~> 5.0)
|
22
|
+
rake (~> 10.0)
|
23
|
+
rake-compiler
|
24
|
+
rmagick
|
25
|
+
video_file!
|
26
|
+
yard
|
27
|
+
|
28
|
+
BUNDLED WITH
|
29
|
+
2.0.1
|