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
diff --git a/sys/decklink/gstdecklink.cpp b/sys/decklink/gstdecklink.cpp | |
index cbe2abcfb..16f710326 100644 | |
--- a/sys/decklink/gstdecklink.cpp | |
+++ b/sys/decklink/gstdecklink.cpp | |
@@ -121,8 +121,8 @@ gst_decklink_video_format_get_type (void) | |
{GST_DECKLINK_VIDEO_FORMAT_10BIT_YUV, "bmdFormat10BitYUV", "10bit-yuv"}, | |
{GST_DECKLINK_VIDEO_FORMAT_8BIT_ARGB, "bmdFormat8BitARGB", "8bit-argb"}, | |
{GST_DECKLINK_VIDEO_FORMAT_8BIT_BGRA, "bmdFormat8BitBGRA", "8bit-bgra"}, | |
+ {GST_DECKLINK_VIDEO_FORMAT_10BIT_RGB, "bmdFormat10BitRGB", "10bit-rgb"}, | |
/* Not yet supported: |
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
# Maintainers: Perry Hung <[email protected]> Florent Thiery <[email protected]> | |
pkgname=decklink | |
pkgver=10.11.4 | |
pkgrel=1 | |
pkgdesc="Drivers for Blackmagic Design DeckLink, Intensity or Multibridge video editing cards" | |
arch=('i686' 'x86_64') | |
url="https://www.blackmagicdesign.com/support/family/capture-and-playback" | |
license=('custom') | |
makedepends=('curl') | |
depends=('linux-headers' 'libxml2' 'libpng12' 'glu' 'qt4') |
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
#!/usr/bin/env python3 | |
import scapy.all | |
import sys | |
last_sync = 0 | |
m = 9999 | |
M = 0 | |
length = 272 |
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
import struct | |
import bz2 | |
import numpy as np | |
from PIL import Image | |
import socket | |
import time | |
import sys | |
import tqdm | |
import os | |
import glob |

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
#!/usr/bin/env python3 | |
import argparse | |
import collections | |
import PyPDF2 | |
def main(): | |
argp = argparse.ArgumentParser(description="Merge PDF presentation slide overlay foo") |
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
MCU=attiny13 | |
MCUFREQ=-DF_CPU=1000000L | |
PROGTYPE=stk500v1 | |
SOURCES=main.c | |
TARGET=main | |
.PHONY: build upload | |
build: $(TARGET).hex |
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
# run "xhost local:root" on host machine | |
FROM debian:latest | |
RUN apt-get update | |
RUN DEBIAN_FRONTEND=noninteractive apt install -y xorg v4l2ucp libgl1 libraw1394-11 libavc1394-0 libiec61883-0 libgtkextra-dev libnss3 libgconf2-4 vnc4server fluxbox libasound2 vlc | |
RUN apt -y purge libturbojpeg0 | |
ADD http://de.archive.ubuntu.com/ubuntu/pool/main/libj/libjpeg-turbo/libjpeg-turbo8_1.3.0-0ubuntu2_amd64.deb /deb/libjpeg-turbo8.deb | |
ADD http://security.ubuntu.com/ubuntu/pool/main/libg/libgcrypt11/libgcrypt11_1.5.3-2ubuntu4.5_amd64.deb /deb/libgcrypt11.deb | |
RUN dpkg -i /deb/*.deb |
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
server { | |
listen 443 ssl http2 proxy_protocol; | |
listen [::]:443 ssl http2 proxy_protocol; | |
ssl_certificate /etc/dehydrated/certs/search.kurz.pw/fullchain.pem; | |
ssl_certificate_key /etc/dehydrated/certs/search.kurz.pw/privkey.pem; | |
server_name search.kurz.pw; | |
access_log off; | |
error_log off; |
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
#!/usr/bin/env python3 | |
from scapy import all as scapy | |
#import subprocess | |
INTERFACE = "eth0" | |
SECRET = b"thecakeisalie" | |
def do_reply(incoming_pkt_ether): | |
# get request |