Skip to content
View HNJAMeindersma's full-sized avatar
Block or Report

Block or report HNJAMeindersma

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. StreamPalette StreamPalette Public

    Simple web GUI for playing audio streams with offline playlist and settings files

    JavaScript 1

  2. DD-WRT DD-WRT Public

    A collection of DD-WRT scripts and extras, focusing on managing multiple Access Points or Nodes

    Shell

  3. Goal is to control switching HDMI so... Goal is to control switching HDMI sources on my TV, unfortunately my TV's API is hardly working so I'll need HDMI-CEC. Since LibreELEC-11.0 has no default package manager, thus PIP packages cannot easily be installed (like paho.mqtt). And considering cec-client is not functioning properly on my system, thus the more difficult cec-ctl had to be used. I've created a HTTP bridge that allows changing HDMI source through a physical CEC address by posting it to `hostname:8232/source`. The endpoint(s) will be used by OpenHAB's HTTP binding for contol.
    1
    from http.server import BaseHTTPRequestHandler, HTTPServer
    2
    import re
    3
    import subprocess
    4
    import json
    5
    
                  
  4. [Behringer X32 / Midas M32] Split a ... [Behringer X32 / Midas M32] Split a multi-channel X-USB into virtual outputs with PulseAudio on Linux/Ubuntu
    1
    # X32/M32 with X-USB on Linux/Ubuntu
    2
    This guide is written for all owners of a Behringer X32 or Midas M32 with a X-USB 32x32 channel expansion card. It is directed towards splitting the X-USB channels up in virtual outputs on Ubuntu 18.04 with PulseAudio. The guide may also work for other versions or distro's of Linux with PulseAudio.
    3
    
                  
    4
    It is assumed that the X-USB is installed and connected to a computer. And automatically recognized as a multi-channel soundcard by the operating system. Also note that on Ubuntu 18.04, PulseAudio runs on top of ALSA. ALSA picks up the soundcard and PulseAudio then uses the full soundcard through ALSA to create virtual channels.
    5