Skip to content

Instantly share code, notes, and snippets.

@hackingman
hackingman / install-sopcast-player.sh
Created February 12, 2026 10:13 — forked from ninegene/install-sopcast-player.sh
SopCast Player Install Script for Linux
#!/bin/bash
set -ex
sudo apt-get update
sudo apt-get install vlc python gettext python-setuptools
sudo apt-get install libvlc-dev hicolor-icon-theme python-glade2 python-gobject python-gtk2
cd /tmp
wget -c -O sopcast-player.tgz https://sopcast-player.googlecode.com/files/sopcast-player-0.8.5.tar.gz
tar xzvf sopcast-player.tgz
@hackingman
hackingman / get_mfc_video_url.js
Created June 20, 2017 19:25
myfreecams livestreamer URL generator
"use strict";
// ATTENTION! Requires `npm install websocket` to run
var url = require("url"),
http = require("http"),
WebSocketClient = require("websocket").client;
function usage()
{