Skip to content

Instantly share code, notes, and snippets.

View sambasallah's full-sized avatar
🎯

Samba Sallah sambasallah

🎯
View GitHub Profile
@sambasallah
sambasallah / installation-guide.md
Last active November 22, 2021 21:44
Install Jibri on Ubuntu 18.04 - Latest Working Version 2021

ALSA Loopback Module - Configure to load on boot, load into running kernel and confirm


echo "snd-aloop" >> /etc/modules
modprobe snd-aloop
lsmod | grep snd_aloop

Install Ffmpeg with X11 capture support


@sambasallah
sambasallah / scalar-type-declaration.php
Created August 4, 2019 19:14
scalar type declaration
function returnsum(float $x, float $y)
{
return $x + $y;
}
returnsum(6, "8 days");
//output float(14)
returnsum(4.1, "4.2");
//output float(8.3)