gst-launch-1.0 videotestsrc is-live=true ! video/x-raw,framerate=25/1 ! videoconvert ! x264enc ! h264parse ! rtph264pay pt=96 ! udpsink host=127.0.0.1 port=5000
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 | |
CN=${CN:-example.com} | |
NAME=${NAME:-example} | |
DST=${DST:-.} | |
echo "CN=$CN, NAME=$NAME, DST=$DST" | |
openssl req -nodes -newkey rsa:2048 -subj "/CN=$CN/O=$NAME" \ | |
-keyout $DST/$NAME.key -out $DST/$NAME.csr && \ |
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
sudo apt-get install libgstreamer1.0-0 gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly gstreamer1.0-libav gstreamer1.0-doc gstreamer1.0-tools gstreamer1.0-x gstreamer1.0-alsa gstreamer1.0-gl gstreamer1.0-gtk3 gstreamer1.0-qt5 gstreamer1.0-pulseaudio | |
# dev | |
sudo apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev |
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
[Unit] | |
Description=some-service | |
After=network.target | |
[Service] | |
WorkingDirectory=/your/directory | |
Environment=NODE_ENV=production | |
Environment=REDIS_HOST=localhost | |
ExecStart=/usr/bin/node index.js | |
Restart=always |
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
{ | |
"AWS Env": { | |
"prefix": "aws-env", | |
"body": [ | |
"export AWS_ACCESS_KEY_ID=$1", | |
"export AWS_SECRET_ACCESS_KEY=$2", | |
"export AWS_DEFAULT_REGION=$3" | |
], | |
"description": "AWS Env" | |
} |
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 React from 'react' | |
import Typography from '@material-ui/core/Typography' | |
import { makeStyles, createStyles } from '@material-ui/core/styles' | |
import { grey } from '@material-ui/core/colors' | |
const useStyles = makeStyles((theme) => | |
createStyles({ | |
label: { | |
fontSize: 14, |
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
//**dataURL to blob** | |
function dataURLtoBlob(dataurl: string) { | |
const arr = dataurl.split(',') | |
const fmt = arr[0] | |
const b64 = arr[1] | |
if (!fmt || !b64) throw new Error('invalid dataurl') | |
const m = fmt.match(/:(.*?);/) | |
if (!m) throw new Error('invalid dataurl') |
OlderNewer