Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
GStreamer
gst-editing-services
Commits
d0b4b87b
Commit
d0b4b87b
authored
Jun 06, 2019
by
Thibault Saunier
🌵
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
docs: Add gstges plugin
parent
7b1cb7a1
Pipeline
#41017
passed with stages
in 68 minutes and 42 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
158 additions
and
0 deletions
+158
-0
docs/gst_plugins_cache.json
docs/gst_plugins_cache.json
+157
-0
plugins/ges/meson.build
plugins/ges/meson.build
+1
-0
No files found.
docs/gst_plugins_cache.json
View file @
d0b4b87b
{
"ges"
:
{
"description"
:
"GStreamer Editing Services Plugin"
,
"device-providers"
:
{},
"elements"
:
{
"gesdemux"
:
{
"author"
:
"Thibault Saunier <tsaunier@igalia.com"
,
"description"
:
"Demuxer for complex timeline file formats using GES."
,
"hierarchy"
:
[
"GESDemux"
,
"GstBin"
,
"GstElement"
,
"GstObject"
,
"GInitiallyUnowned"
,
"GObject"
],
"klass"
:
"Codec/Demux/Editing"
,
"long-name"
:
"GStreamer Editing Services based 'demuxer'"
,
"pad-templates"
:
{
"audio_src"
:
{
"caps"
:
"audio/x-raw(ANY):
\n
"
,
"direction"
:
"src"
,
"presence"
:
"sometimes"
},
"sink"
:
{
"caps"
:
"application/xges:
\n
"
,
"direction"
:
"sink"
,
"presence"
:
"always"
},
"video_src"
:
{
"caps"
:
"video/x-raw(ANY):
\n
"
,
"direction"
:
"src"
,
"presence"
:
"sometimes"
}
},
"properties"
:
{
"async-handling"
:
{
"blurb"
:
"The bin will handle Asynchronous state changes"
,
"construct"
:
false
,
"construct-only"
:
false
,
"default"
:
"false"
,
"type-name"
:
"gboolean"
,
"writable"
:
true
},
"message-forward"
:
{
"blurb"
:
"Forwards all children messages"
,
"construct"
:
false
,
"construct-only"
:
false
,
"default"
:
"false"
,
"type-name"
:
"gboolean"
,
"writable"
:
true
},
"timeline"
:
{
"blurb"
:
"Timeline to use in this source."
,
"construct"
:
false
,
"construct-only"
:
false
,
"type-name"
:
"GESTimeline"
,
"writable"
:
false
}
},
"rank"
:
"primary"
,
"signals"
:
{
"no-more-pads"
:
{
"args"
:
[],
"retval"
:
"void"
},
"pad-added"
:
{
"args"
:
[
"GstPad"
],
"retval"
:
"void"
},
"pad-removed"
:
{
"args"
:
[
"GstPad"
],
"retval"
:
"void"
}
}
},
"gessrc"
:
{
"author"
:
"Erik Walthinsen <omega@cse.ogi.edu>,Wim Taymans <wim.taymans@gmail.com>"
,
"description"
:
"Simple container object"
,
"hierarchy"
:
[
"GESSrc"
,
"GstBin"
,
"GstElement"
,
"GstObject"
,
"GInitiallyUnowned"
,
"GObject"
],
"klass"
:
"Generic/Bin"
,
"long-name"
:
"Generic bin"
,
"pad-templates"
:
{
"audio_src"
:
{
"caps"
:
"audio/x-raw(ANY):
\n
"
,
"direction"
:
"src"
,
"presence"
:
"sometimes"
},
"video_src"
:
{
"caps"
:
"video/x-raw(ANY):
\n
"
,
"direction"
:
"src"
,
"presence"
:
"sometimes"
}
},
"properties"
:
{
"async-handling"
:
{
"blurb"
:
"The bin will handle Asynchronous state changes"
,
"construct"
:
false
,
"construct-only"
:
false
,
"default"
:
"false"
,
"type-name"
:
"gboolean"
,
"writable"
:
true
},
"message-forward"
:
{
"blurb"
:
"Forwards all children messages"
,
"construct"
:
false
,
"construct-only"
:
false
,
"default"
:
"false"
,
"type-name"
:
"gboolean"
,
"writable"
:
true
},
"timeline"
:
{
"blurb"
:
"Timeline to use in this src."
,
"construct"
:
false
,
"construct-only"
:
false
,
"type-name"
:
"GESTimeline"
,
"writable"
:
true
}
},
"rank"
:
"none"
,
"signals"
:
{
"no-more-pads"
:
{
"args"
:
[],
"retval"
:
"void"
},
"pad-added"
:
{
"args"
:
[
"GstPad"
],
"retval"
:
"void"
},
"pad-removed"
:
{
"args"
:
[
"GstPad"
],
"retval"
:
"void"
}
}
}
},
"filename"
:
"gstges"
,
"license"
:
"LGPL"
,
"package"
:
"GStreamer Editing Services"
,
"source"
:
"gst-editing-services"
,
"tracers"
:
{},
"url"
:
"Unknown package origin"
},
"nle"
:
{
"description"
:
"GStreamer Non Linear Engine"
,
"elements"
:
{
...
...
plugins/ges/meson.build
View file @
d0b4b87b
...
...
@@ -8,3 +8,4 @@ gstges = library('gstges', gstges_sources,
install_dir : plugins_install_dir,
)
pkgconfig.generate(gstges, install_dir : plugins_pkgconfig_install_dir)
plugins += [gstges]
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment