Created by fiddling with code written by Mathias Bynens for https://mothereff.in/js-variables
MIT License from his project should be honored.
const source$ = Observable.interval(1000).take(3); // 0, 1, 2 | |
// waits 3 seconds, then logs "2". | |
// because the observable takes 3 seconds to complete, and | |
// the interval emits incremented numbers starting at 0 | |
async function test() { | |
console.log(await source$.toPromise()); | |
} |
Created by fiddling with code written by Mathias Bynens for https://mothereff.in/js-variables
MIT License from his project should be honored.
REM NOTE that this does NOT uninstall ffmpeg when done | |
@echo off | |
setlocal enabledelayedexpansion | |
echo Current directory: %cd% | |
REM Set the download URL for FFmpeg | |
set "ffmpeg_url=https://github.com/BtbN/FFmpeg-Builds/releases/download/latest/ffmpeg-master-latest-win64-gpl.zip" |