This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tlobject = ges.TimelineFileSource("mon/super/film/porno/") | |
effect = ges.Effect("mon/super/kaleidoscope") | |
video_track_object = tlobject.get_video_track_object() <-- Cette helper function pourrait etre sympa | |
video_track_object.set_effect("mon/super/kaleidoscope") | |
controller = ges.Controller(effect) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+------------+ | |
| Controller | | |
+------------+ | |
+---------+ | |
| Summary | | |
+---------+ | |
1. First thoughts | |
2. Problems |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from gi.repository import GstPbutils | |
from gi.repository import Gtk | |
from gi.repository import Gst | |
from gi.repository import GES | |
from gi.repository import GObject | |
import sys | |
import signal | |
def handle_sigint(sig, frame): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(gdb) bt | |
#0 __lll_lock_wait () at ../nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S:135 | |
#1 0x00000031fd009cc1 in _L_lock_885 () from /lib64/libpthread.so.0 | |
#2 0x00000031fd009bda in __GI___pthread_mutex_lock (mutex=0x28a0d80) at pthread_mutex_lock.c:85 | |
#3 0x00007fffd75f8c31 in gst_adder_sink_event (pads=0xc75cd0 [GstCollectPads], pad=0x2e02630, event=0x2f8e920, user_data=<optimized out>) at gstadder.c:837 | |
#4 0x00007fffee0ba372 in gst_collect_pads_event (pad=<optimized out>, parent=<optimized out>, event=0x2f8e920) at gstcollectpads.c:1815 | |
#5 0x00007fffef3b1d4a in gst_pad_send_event_unchecked (pad=pad@entry=0x7fffa8024fd0 [GstAdderPad], event=event@entry=0x2f8e920, type=type@entry=320) at gstpad.c:4983 | |
#6 0x00007fffef3b240c in gst_pad_push_event_unchecked (pad=pad@entry=0x2df2c40 [GstGhostPad], event=event@entry=0x2f8e920, type=320, type@entry=GST_PAD_PROBE_TYPE_EVENT_DOWNSTREAM) at gstpad.c:4679 | |
#7 0x00007fffef3bb46e in gst_pad_push_event (pad=pad@entry=0x2df2c40 [GstGhostPad], event=0x2f8e920) at |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from functools import wraps | |
from schema import Schema | |
def function_validator(*pos_args, args_schema=None, kwargs_schema=None): | |
args_schema = args_schema or Schema([]) | |
def decorator(func): | |
@wraps(func) | |
def wrapper(*args, **kwargs): | |
new_args = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
meh ⓔ venv fredo ⋯ apertis sources traprain pip freeze | |
clang==3.7.dev234765 | |
dbus-deviation==0.5.0 | |
hotdoc==0.8.1 | |
hotdoc-c-extension==0.8 | |
hotdoc-dbus-extension==0.8 | |
lxml==3.6.4 | |
pkgconfig==1.1.0 | |
pygraphviz==1.3.1 | |
PyYAML==3.12 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
meh ⓔ venv fredo ⋯ apertis sources traprain pip freeze | |
clang==3.7.dev234765 | |
dbus-deviation==0.5.0 | |
hotdoc==0.8.1 | |
hotdoc-c-extension==0.8 | |
hotdoc-dbus-extension==0.8 | |
lxml==3.6.4 | |
pkgconfig==1.1.0 | |
pygraphviz==1.3.1 | |
PyYAML==3.12 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<c:configuration xmlns:c="controller" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="controller audiomanagertypes.xsd "> | |
<listSources> | |
<source> | |
<domainName>GStreamer</domainName> | |
<name>GstTestSourceWhiteNoise</name> | |
<className>TEST</className> | |
<registrationType>REG_ROUTER</registrationType> | |
</source> | |
<source> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash -i | |
PREFIX=~/devel/okdaccord | |
GENIVI_PREFIX=$PREFIX | |
LD_LIBRARY_PATH=$PREFIX/lib:$PREFIX/lib64 | |
DYLD_LIBRARY_PATH=$PREFIX/lib:$PREFIX/lib64 | |
PKG_CONFIG_PATH=$PREFIX/lib/pkgconfig:$PREFIX/pkgconfig:$PREFIX/lib64/pkgconfig/ | |
PATH=$PREFIX/bin:$PATH | |
GI_TYPELIB_PATH=$PREFIX/share/gir-1.0:$GI_TYPELIB_PATH |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
meh java-demo … gstwebrtc-demos sendrecv gst-java java -jar build/libs/gst-java.jar --server=wss://127.0.0.1:8443 --peer-id=2442 | |
[main] INFO WebrtcSendRecv - Using peer id 2442, on server: wss://127.0.0.1:8443 | |
[AsyncHttpClient-3-1] ERROR WebrtcSendRecv - onError | |
Exception in thread "main" java.net.ConnectException: General SSLEngine problem | |
at org.asynchttpclient.netty.channel.NettyConnectListener.onFailure(NettyConnectListener.java:179) | |
at org.asynchttpclient.netty.channel.NettyConnectListener$1.onFailure(NettyConnectListener.java:151) | |
at org.asynchttpclient.netty.SimpleFutureListener.operationComplete(SimpleFutureListener.java:26) | |
at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:511) | |
at io.netty.util.concurrent.DefaultPromise.notifyListeners0(DefaultPromise.java:504) | |
at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:483) |
OlderNewer