Started working on automating publishing steps.
This commit is contained in:
parent
796bd34a53
commit
9fe72dc7ad
3 changed files with 24 additions and 1 deletions
12
.gitignore
vendored
12
.gitignore
vendored
|
@ -1,3 +1,13 @@
|
||||||
|
# ignore vim swap files
|
||||||
*.swp
|
*.swp
|
||||||
|
# ignore feed files
|
||||||
*.xml
|
*.xml
|
||||||
*.bak
|
# ignore back up files
|
||||||
|
*.xml.*
|
||||||
|
# ignore media files
|
||||||
|
*.wav
|
||||||
|
*.flac
|
||||||
|
*.ogg
|
||||||
|
*.mp3
|
||||||
|
*.m4a
|
||||||
|
*.chapters.txt
|
||||||
|
|
1
README
1
README
|
@ -4,3 +4,4 @@ append.py - Compares the podcast category feed for the podcast's web site with f
|
||||||
encode.bash - Drives a set of encoders and tagging utilities to convert a single WAV input file into flac, Ogg Vorbis, AAC and MP3 files with complete and consistent metadata.
|
encode.bash - Drives a set of encoders and tagging utilities to convert a single WAV input file into flac, Ogg Vorbis, AAC and MP3 files with complete and consistent metadata.
|
||||||
relink.py - A script intended for one time use to tweak a feed to re-link its enclosures to appropriate URLs at the Internet Archive.
|
relink.py - A script intended for one time use to tweak a feed to re-link its enclosures to appropriate URLs at the Internet Archive.
|
||||||
tidyrc - Tidy config that approximates the formatting of the live feeds to minimize disruption.
|
tidyrc - Tidy config that approximates the formatting of the live feeds to minimize disruption.
|
||||||
|
publish.bash - Script to automate as much of the publishing step as possible.
|
||||||
|
|
12
publish.bash
Normal file
12
publish.bash
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# TODO can upload to archive.org be automated with curl?
|
||||||
|
|
||||||
|
# if the other scripts didn't twig you to it, this one reveals my current
|
||||||
|
# dependence on Dropbox
|
||||||
|
cp *.xml ~/Dropbox/Public/
|
||||||
|
|
||||||
|
# TODO clean out backups older than so many days
|
||||||
|
|
||||||
|
# clean out all but the flac files
|
||||||
|
rm *.wav *.ogg *.aac *.mp3
|
Loading…
Reference in a new issue