add mp3 extraction script, and publish two podcasts

This commit is contained in:
Greg Gauthier 2022-06-27 20:28:44 +01:00
parent 862e9ff6ec
commit 1d479fd564
5 changed files with 40 additions and 1 deletions

1
.gitignore vendored
View File

@ -5,3 +5,4 @@ public/
.hugo_build.lock
logs/
build/
local-assets/

View File

@ -0,0 +1,15 @@
---
title: "A Quandary of Wokeness: A Failure of Philosophy"
date: 2022-06-25T19:55:43+01:00
series: "1. Main Feed"
image: /img/woke-man-wide.jpg
enclosure: /audio/a-quandry-of-wokeness.mp3
draft: false
---
{{< audio "https://gmgauthier.us-east-1.linodeobjects.com/podcast/audio/a-quandry-of-wokeness.mp3" >}}
Wherein, I supply a brief commentary on a *published academic paper*, lamenting the downfall of political philosophy in America.
Original Article: https://journalofcontroversialideas.org/article/2/1/172
How I discovered this paper: https://odysee.com/@nogre0:f/philosophy-roulette-277-a-quandry-of:c

View File

@ -1,6 +1,6 @@
---
title: "Between the Benjamins: A concurrence of criticism"
date: 2022-06-25T12:07:46+01:00
date: 2022-06-24T12:07:46+01:00
series: "1. Main Feed"
image: img/between-the-benjamins.jpg
enclosure: audio/between-the-benjamins.mp3

View File

@ -0,0 +1,12 @@
---
title: "Robert Bork Analyzes The So-Called Right To Privacy"
date: 2022-06-27T20:12:35+01:00
series: "1. Main Feed"
image: /img/robert-bork-wide.jpg
enclosure: /audio/bork-on-privacy.mp3
draft: false
---
{{< audio "https://gmgauthier.us-east-1.linodeobjects.com/podcast/audio/bork-on-privacy.mp3" >}}
Wherein I read two extended passages from Robert Bork's famous "The Tempting of America", in which he dissects the false right of "privacy" read into the Constitution in the Griswold decision. I offer a few commentary remarks at the end, but basically, this is just a reading.

11
extract Executable file
View File

@ -0,0 +1,11 @@
#!/usr/bin/env bash
if [[ -z "$1" ]]; then
echo "Supply the full filepath of the video from which to extract audio"
exit 1
fi
filename=$(basename -- "${1}")
filename="${filename%.*}"
ffmpeg -i "${1}" -f mp3 -ab 192000 -vn "${filename}.mp3"