This is the repository for my graduation project "Let's Amplify Unspeakable Things". It's name comes from the phonetics of the vowels of the title.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 
 
 
Angeliki 6fc3d6ac6f added if statements in php according to the desired distorted voice. It worksgit add .git add .! pirms 4 gadiem
js added/fixed radioactive.php and web-audio tool for recording contributor's voices pirms 4 gadiem
other/presentations new site from pi pirms 4 gadiem
radioactive@6df469f973 moved the radioactive project here pirms 4 gadiem
scripts added if statements in php according to the desired distorted voice. It worksgit add .git add .! pirms 4 gadiem
styles fixed issue for php call and run command for audio editing pirms 4 gadiem
texts moved the radioactive project here pirms 4 gadiem
texts-radioactive fixed issue for php call and run command for audio editing pirms 4 gadiem
venv new site from pi pirms 4 gadiem
.gitignore fixed issue for php call and run command for audio editing pirms 4 gadiem
COPYradioactive_monstrosity.php moved the radioactive project here pirms 4 gadiem
LICENCE-MP3 new site from pi pirms 4 gadiem
README-MP3recorder.md new site from pi pirms 4 gadiem
README.md added/fixed radioactive.php and web-audio tool for recording contributor's voices pirms 4 gadiem
amplification.php new site from pi pirms 4 gadiem
cover.php new site from pi pirms 4 gadiem
diary.php new site from pi pirms 4 gadiem
extracts.html new site from pi pirms 4 gadiem
index.php new site from pi pirms 4 gadiem
overlapping-interface.html new site from pi pirms 4 gadiem
player.php added/fixed radioactive.php and web-audio tool for recording contributor's voices pirms 4 gadiem
podcast1.php added/fixed radioactive.php and web-audio tool for recording contributor's voices pirms 4 gadiem
podcast1.php.save added/fixed radioactive.php and web-audio tool for recording contributor's voices pirms 4 gadiem
podcast2.php new site from pi pirms 4 gadiem
podcast3.php new site from pi pirms 4 gadiem
podcast4.php new site from pi pirms 4 gadiem
radioactive (copy).php fixed issue for php call and run command for audio editing pirms 4 gadiem
radioactive.php fixed issue for php call and run command for audio editing pirms 4 gadiem
radioactive_monstrosity.php moved the radioactive project here pirms 4 gadiem
savefile.php new site from pi pirms 4 gadiem
test.html fixed issue for php call and run command for audio editing pirms 4 gadiem
test.php new site from pi pirms 4 gadiem
testdisk.log new site from pi pirms 4 gadiem
thesis-angeliki.php new site from pi pirms 4 gadiem
url-eaiaiaiaoi.html new site from pi pirms 4 gadiem
vocal.php new site from pi pirms 4 gadiem

README.md

This is about writing my thesis with git so to keep track of my writing and experiment with other ways of publishing.

Here is where me and others meet in the text. Here is others people proof readings on my texts.

https://pad.xpub.nl/p/thesis-angeliki

Scripts

Podcast

The command line "podcast" allows recording of microphone input and soundcard at the same time. first: mv podcast .local/bin/podcast follow these instructions to create a pulse_monitor for access to external mic: http://pzwiki.wdka.nl/mediadesign/Command-line_podcasts run in terminal: podcast

###pre.. sudo apt-get install pavucontrol sudo apt-get install pulseaudio pulseaudio-module-zeroconf alsa-utils avahi-daemon sudo apt-get install ffmpeg

Srttojs

python3 srttojs.py description-alex1-A.srt

eaiaiaiaoi

Give access to apache for uploading audio through php sudo chown www-data:www-data /uploads/

record and save user's microphone

Updated script: https://developers.google.com/web/fundamentals/media/recording-audio

errors: https://stackoverflow.com/questions/34215937/getusermedia-not-supported-in-chrome

Chrome finally implemented the new navigator.mediaDevices.getUserMedia() method, but they added a security that will prevent the calls from unsecure address (non https or non localhost servers)

You will call it like this :

var video = document.querySelector('video'); navigator.mediaDevices.getUserMedia({video:true}).then(function(mediaStream){ window.stream = mediaStream; video.src = URL.createObjectURL(mediaStream); video.play(); });