Skip to content

Instantly share code, notes, and snippets.

## this part is the ESPhome Yaml file ##
esphome:
name: window_control_linear
platform: ESP8266
board: d1_mini
wifi:
ssid: !secret wifi
password: !secret wifi_pw
@aldomaw
aldomaw / twitch2m3u8.php
Created November 12, 2021 22:33
A simple PHP script to get Twitch HLS Stream by a channel name.
<?php
ob_start();
$clientId = ""; //Set your client key
// cURL function
function Curl($url, $header){
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 3);