diff --git a/.gitignore b/.gitignore index 1c063d3..b4e9b7d 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ public/ .hugo_build.lock logs/ build/ +local-assets/ \ No newline at end of file diff --git a/content/podcast/a-quandary-of-wokeness:-a-failure-of-philosophy.md b/content/podcast/a-quandary-of-wokeness:-a-failure-of-philosophy.md new file mode 100644 index 0000000..21c4cb1 --- /dev/null +++ b/content/podcast/a-quandary-of-wokeness:-a-failure-of-philosophy.md @@ -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 \ No newline at end of file diff --git a/content/podcast/between-the-benjamins.md b/content/podcast/between-the-benjamins.md index 47a991a..add9e0d 100644 --- a/content/podcast/between-the-benjamins.md +++ b/content/podcast/between-the-benjamins.md @@ -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 diff --git a/content/podcast/robert-bork-analyzes-the-so-called-right-to-privacy.md b/content/podcast/robert-bork-analyzes-the-so-called-right-to-privacy.md new file mode 100644 index 0000000..c9319d1 --- /dev/null +++ b/content/podcast/robert-bork-analyzes-the-so-called-right-to-privacy.md @@ -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. \ No newline at end of file diff --git a/extract b/extract new file mode 100755 index 0000000..9fd2e48 --- /dev/null +++ b/extract @@ -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"