Skip to content

Instantly share code, notes, and snippets.

View ydubreuil's full-sized avatar

Yoann Dubreuil ydubreuil

View GitHub Profile
@ydubreuil
ydubreuil / docker logs.txt
Created May 19, 2020 14:49
console-api stunnel
i-0f9c91fd8d944e7ff | CHANGED | rc=0 >>
checking frc-zk-stunnels-zk-client-forwarder-gcp-northamerica-northeast1
2020.04.24 14:42:50 LOG4[ui]: Service [client-0] uses "verify = 2" without subject checks
2020.04.24 14:42:50 LOG4[ui]: Use "checkHost" or "checkIP" to restrict trusted certificates
2020.04.24 14:42:50 LOG4[ui]: Service [client-1] uses "verify = 2" without subject checks
2020.04.24 14:42:50 LOG4[ui]: Use "checkHost" or "checkIP" to restrict trusted certificates
2020.04.24 14:42:50 LOG4[ui]: Service [client-2] uses "verify = 2" without subject checks
2020.04.24 14:42:50 LOG4[ui]: Use "checkHost" or "checkIP" to restrict trusted certificates
2020.04.24 14:44:20 LOG3[586]: ssl fd: Broken pipe (32)
2020.04.24 14:46:59 LOG3[589]: transfer: s_poll_wait: TIMEOUTclose exceeded: closing

Keybase proof

I hereby claim:

  • I am ydubreuil on github.
  • I am ydubreuil (https://keybase.io/ydubreuil) on keybase.
  • I have a public key whose fingerprint is A29B E78B 747B F0C2 7520 3388 689E 687C 7242 2C96

To claim this, I am signing this object:

@ydubreuil
ydubreuil / gist:bace7648fbddf65e520a913fdde46e54
Created October 5, 2016 08:44
GStreamer pipeline to replace the beginning of a video and encode it in h264
gst-launch-1.0 \
filesrc location="gradle.mp4" ! decodebin name=intro \
filesrc location="2016-10-04_15-16-13.ts" ! decodebin name=main \
matroskamux name=mux ! filesink location="video.mkv" \
videomixer name=mixer ! video/x-raw,width=1280,height=720,framerate=50/1 ! videoconvert ! x264enc ! video/x-h264,width=1280,height=720,framerate=50/1 ! mux. \
intro. ! autovideoconvert ! queue2 ! mixer.sink_0 \
main. ! autovideoconvert ! queue2 ! mixer.sink_1 \
main. ! audioconvert ! queue2 ! lamemp3enc ! mux.