Skip to content

Instantly share code, notes, and snippets.

View leonidlezner's full-sized avatar

Leonid Lezner leonidlezner

View GitHub Profile
@leonidlezner
leonidlezner / itunes-podcast-categories.json
Last active April 12, 2020 12:20 — forked from dpellenwood/itunes-podcast-categories.json
A list of the current iTunes podcast categories in different formats
[
{
"Arts": [
"Books",
"Design",
"Fashion & Beauty",
"Food",
"Performing Arts",
"Visual Arts"
]
#!/bin/bash
# Usage: ./rodecaster_conv.sh POD000131.WAV
# Tool sox is needed!
# Installation..
# ..under Debian/Ubuntu: sudo apt-get install sox
# ..under maxOS using Homebrew: brew install sox
function convert() {
#!/bin/bash
# Usage: ./pod2video.sh someaudio.mp3 mycover.png
# Tools ffmpeg and imagemagic are needed!
# Installation under maxOS using Homebrew: brew install ffmpeg
filename=$1
orig_cover=$2
output_dir=${3:-.}