Skip to content

Instantly share code, notes, and snippets.

@stoyanovgeorge
stoyanovgeorge / change_vlan_ip_mask.bat
Last active January 27, 2025 17:09
A batch script for Windows 10 which can change the IP address, the network mask, the gateway, the DNS and the VLAN ID of an interface. You need to execute the script with admin rights.
@echo off
:: Configuration Variables
set "ifName=Ethernet 2"
set "ipAddress=10.88.167.35"
set "subnetMask=255.255.255.240"
set "vlanID=702"
:: set "defaultGateway=x.x.x.x"
:: set "primaryDNS=x.x.x.x"
@phpcodertop
phpcodertop / script.sh
Created April 14, 2018 22:44
install ipvtl trial and hack its trial
#!/bin/bash
echo "Downloading ipvtl Software \n"
cd /home
wget http://www.ipvideotrans.com/download/ipvtl_trial-x64.tar.xz
@Skimige
Skimige / iptvsearch.py
Last active January 22, 2025 19:13
Scan IPTV channels
# iptvscan
# Script for scanning and saving IPTV playlist.
# Python v.3 required for using. https://www.python.org/downloads/
# Author: joddude <joddude@gmail.com>
# Disclaimer:
# This script is free and provided "as is" without any warranty.
# You can use it at your own risk.
# The author assumes no responsibility for any moral or material damage caused
@natelandau
natelandau / .bash_profile
Last active January 16, 2025 16:21
Mac OSX Bash Profile
# ---------------------------------------------------------------------------
#
# Description: This file holds all my BASH configurations and aliases
#
# Sections:
# 1. Environment Configuration
# 2. Make Terminal Better (remapping defaults and adding functionality)
# 3. File and Folder Management
# 4. Searching
# 5. Process Management
@afriza
afriza / install-ffmpeg-with-decklink-support-ubuntu-18.04-server.md
Last active January 14, 2025 19:56
Compiling and installing `ffmpeg` with Decklink SDK on Ubuntu 18.04 Server. Check out forks of this gist for more up-to-date info.
@Piasy
Piasy / install_ffmpeg.sh
Last active January 13, 2025 11:45
brew install ffmpeg with all options
brew options ffmpeg
brew install ffmpeg \
--with-chromaprint \
--with-fdk-aac \
--with-fontconfig \
--with-freetype \
--with-frei0r \
--with-game-music-emu \
--with-libass \
@hz37
hz37 / ffmpeg.txt
Last active January 12, 2025 21:44
ffmpeg examples Hens Zimmerman
# dump metadata
exiftool -ee IMG_6043.MOV > dump.txt
# remove metadata
ffmpeg -i 2025-01-11\ 11-54-26.MOV -map_metadata -1 -c:v copy 2025-01-11\ 11-54-26s.MOV
# EBU Loudness van een file:
@nebgnahz
nebgnahz / gstreamer.md
Last active January 9, 2025 13:12
Collections of GStreamer usages

Most GStreamer examples found online are either for Linux or for gstreamer 0.10.

This particular release note seems to have covered important changes, such as:

  • ffmpegcolorspace => videoconvert
  • ffmpeg => libav

Applying -v will print out useful information. And most importantly the negotiation results.