Skip to content

Instantly share code, notes, and snippets.

@TalusUnheil
TalusUnheil / Podcasts in OPUS transcodieren.md
Last active September 16, 2021 13:23
Podcasts von MP3 und Vorbis in OPUS transkodieren

Podcasts von MP3 und Vorbis in OPUS transkodieren

Podcasts werden derzeit häufig im MP3-Format in Stereo mit 128-192 kbit/s ausgeliefert (etwas seltener findet man auch das datensparsamere OGG/Vorbis Format).

Bei Podcasts kann(!) jedoch ein datensparsameres Mono-Signal ausreichen

@steven2358
steven2358 / ffmpeg.md
Last active May 10, 2024 20:57
FFmpeg cheat sheet
@umidjons
umidjons / youtube-dl-download-audio-only-on-best-quality.md
Last active March 9, 2024 07:54
Download Audio from YouTube with youtube-dl

Download Audio from YouTube

-i - ignore errors

-c - continue

-t - use video title as file name

--extract-audio - extract audio track

@DrAzraelTod
DrAzraelTod / serverlist
Created June 7, 2017 11:20
My "current" podget serverlist file
# Default Server List for podget
# FORMAT: <url> <category> <name>
# NOTES:
# 1. The Category must be one word without spaces. You may use underscores.
# 2. Any spaces in the urls needs to be converted to %20
# 3. Disable the downloading of any feed by commenting it out with a #.
# 4. If you are creating ASX playlists, make sure the feed name does not
# have any spaces in it.
# Find more servers at: http://www.ipodder.org/directory/4/podcasts
http://chaosradio.ccc.de/chaosradio_express-latest.rss tech CRE
@bashtuner
bashtuner / Bashtuner
Last active September 18, 2021 13:35
Ein Script zum abspielen, verwalten und zeitgesteuertem aufnehmen von Internetradio Stationen.
#!/bin/bash
# Programm Bashtuner
# Autor Karsten Weidenfeld
# OS Linux Mint 14, Ubuntu 12.04
# Abhängigkeiten curl, vlc, zenity, streamripper, at
# Bashtuner ist ein Radio Abspielprogramm das wahlweise Sender aus einer lokalen Favouritenliste
# oder einer Onlineliste abspielt. Es können auch Sender aus der Onlineliste übernommen werden.
@archagon
archagon / playlist-to-podcast.py
Created September 28, 2012 07:03
A script that downloads videos from YouTube playlists, extracts their audio, and only downloads missing files each time it's run. Also generates an iTunes-compliant podcast xml file for private hosting purposes. Requires youtube-dl, ffmpeg, and ffprobe.
# YouTube playlist audio retreiver and iTunes-compliant podcast XML generation tool.
# This script will download each video file from the specified YouTube playlist, losslessly extract
# the audio, delete the video, and ultimately produce an iTunes-compliant podcast XML with the
# appropriate metadata, including chapter markers (if provided in the description). If you run the
# script again, only videos that haven't already been converted will be downloaded, allowing you to
# schedule the script to run as often as needed without stressing your internet connection or
# hard drive space. After generating the files and xml, you can easily host them on a local server
# in order to use them with iTunes or your favorite podcast aggregator -- but that's beyond this
# script's jurisdiction.