This file contains hidden or 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
#include "TRObject.h" | |
TRObject& TRObject::operator[](const QString& key) | |
{ | |
if (type() == QVariant::Map) | |
return keyValue<QVariantMap>(this, key); | |
else if (type() == QVariant::Hash) | |
return keyValue<QVariantHash>(this, key); | |
setValue(QVariantMap()); |
This file contains hidden or 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/perl -w | |
use strict; | |
no warnings 'once'; | |
my $cmd = "ffplay -nodisp -loglevel info rtsp://SERVER/live"; | |
pipe( READER, WRITER ) ; | |
my $child = open READER, '-|'; |
This file contains hidden or 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
1) source | |
ffmpeg -fflags nobuffer -re -f alsa -i hw:0,0 -c:a nellymoser -ar 11025 -ab 8k -ac 1 -f flv rtmp://${SERVER}/1 | |
2) listen | |
ffplay -probesize 32 rtmp://127.0.0.1/live/1 | |
3) server |
This file contains hidden or 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 | |
out="out" | |
[[ $1 ]] && out="$1" | |
mkdir -p $out | |
echo "## Creating self-signed certificate -> {$out}" | |
openssl req -nodes -new -x509-keyout ${out}/server.key -out ${out}/server.crt |
This file contains hidden or 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
# Install ARCH Linux with encrypted file-system and UEFI | |
# The official installation guide (https://wiki.archlinux.org/index.php/Installation_Guide) contains a more verbose description. | |
# Download the archiso image from https://www.archlinux.org/ | |
# Copy to a usb-drive | |
dd if=archlinux.img of=/dev/sdX bs=16M && sync # on linux | |
# Boot from the usb. If the usb fails to boot, make sure that secure boot is disabled in the BIOS configuration. | |
# Set swedish keymap |
OlderNewer