Skip to content

Instantly share code, notes, and snippets.

View ManuelGotzen's full-sized avatar
🏠
AI validation in progress

Manuel Gotzen ManuelGotzen

🏠
AI validation in progress
View GitHub Profile
@sharunkumar
sharunkumar / adb-dns.bat
Created February 7, 2020 07:08
Enabling / Disabling private DNS in android via ADB
rem to disable private dns
adb shell settings put global private_dns_mode off
rem to enable private dns with hostname (example with dns.adguard.com)
adb shell settings put global private_dns_mode hostname
adb shell settings put global private_dns_specifier dns.adguard.com
@wynand1004
wynand1004 / snake_game.py
Created September 2, 2018 08:56
A Simple Snake Game made in Python 3
# Simple Snake Game in Python 3 for Beginners
# By @TokyoEdTech
import turtle
import time
import random
delay = 0.1
# Score
@arjunae
arjunae / FFMPEG_YouNow_Streaming
Last active June 28, 2020 22:34
VLC 3.0 and FFMPEG settings for streaming to YouNow (02.2018)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Streaming Setup Recommendations
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1) Deactivate AntiVirus Software during Streaming
2) Open Audio->Speaker and set the Quality to 16Bit / 44100 (CD Quality)
3) Tweak Advanced Energy Settings->Multimedia
4) Open System->Services and stop Services which are unneeded for Streaming.
5) Start OBS with the parameter --enable-gpu
6) Start Streaming Software (FFMPEG / OBS) with "Aboveormal" Priority
7) Remove unused Protocols/Clients within Network Adapter settings.
# Sample script using midi device to control Blackmagic ATEM Upstream Key Chroma settings
# Uses these 2 projects
# https://ianmorrish.wordpress.com/v-ise/atem/
# https://github.com/Psychlist1972/Windows-10-PowerShell-MIDI
#
add-type -path 'documents\windowspowershell\SwitcherLib.dll'
Import-Module ".\Documents\WindowsPowerShell\PeteBrown.PowerShellMidi.dll"
#region ATEM settings
$Global:atem = New-Object SwitcherLib.Switcher("192.168.1.8")
$atem.Connect()