added scripts

master
Angeliki 5 years ago
parent 202a0687d6
commit b69622e566

3
.gitignore vendored

@ -1,5 +1,6 @@
project/podcasts/
project/podcasts/*
thesis/*.pdf
thesis/drafts/
project/audio/
project/images/

Binary file not shown.

@ -4,5 +4,11 @@ Here is where me and others meet in the text. Here is others people proof readin
https://pad.xpub.nl/p/thesis-angeliki
# Srttojs
# Scripts
## Podcast
The command line "podcast" allows recording of microphone input and soundcard at the same time.
`mv podcast .local/bin/podcast`
run in terminal:
`podcast`
## Srttojs
python3 srttojs.py description-alex1-A.srt

@ -0,0 +1,12 @@
#!/bin/bash
output=${1:-podcast}
arecord -Dpulse_monitor -f cd ${output}_sc.wav &
arecord -Dpulse -f cd ${output}_mic.wav
ffmpeg -i ${output}_mic.wav -i ${output}_sc.wav -filter_complex amerge -ac 2 -c:a libmp3lame -q:a 4 ${output}.mp3
today=$(date +%Y%m%d-%H%M);
mkdir -p "podcast.$today"
mv podcast.$today podcasts/;
mv -v ${output}_sc.wav podcasts/podcast.$today/${output}_sc.$today.wav;
mv -v ${output}_mic.wav podcasts/podcast.$today/podcast_mic.$today.wav;
mv -v ${output}.mp3 podcasts/${output}.$today.mp3;
Loading…
Cancel
Save