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.
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Angeliki 1d1de18988 added/fixed radioactive.php and web-audio tool for recording contributor's voices 4 years ago
js added/fixed radioactive.php and web-audio tool for recording contributor's voices 4 years ago
other/presentations new site after deletion 4 years ago
scripts added/fixed radioactive.php and web-audio tool for recording contributor's voices 4 years ago
styles new site after deletion 4 years ago
texts added/fixed radioactive.php and web-audio tool for recording contributor's voices 4 years ago
venv new site after deletion 4 years ago
web-dictaphone@3d9dee2cd2 added/fixed radioactive.php and web-audio tool for recording contributor's voices 4 years ago
.gitignore new site after deletion 4 years ago
LICENCE-MP3 new site after deletion 4 years ago
README-MP3recorder.md new site after deletion 4 years ago
README.md added/fixed radioactive.php and web-audio tool for recording contributor's voices 4 years ago
amplification.php new site after deletion 4 years ago
cover.php new site after deletion 4 years ago
diary.php new site after deletion 4 years ago
extracts.html new site after deletion 4 years ago
index.php new site after deletion 4 years ago
overlapping-interface.html new site after deletion 4 years ago
player.php added/fixed radioactive.php and web-audio tool for recording contributor's voices 4 years ago
podcast1.php added/fixed radioactive.php and web-audio tool for recording contributor's voices 4 years ago
podcast1.php.save added/fixed radioactive.php and web-audio tool for recording contributor's voices 4 years ago
podcast2.php new site after deletion 4 years ago
podcast3.php new site after deletion 4 years ago
podcast4.php new site after deletion 4 years ago
radioactive_monstrosity.php added/fixed radioactive.php and web-audio tool for recording contributor's voices 4 years ago
savefile.php new site after deletion 4 years ago
test.php new site after deletion 4 years ago
thesis-angeliki.php new site after deletion 4 years ago
url-eaiaiaiaoi.html new site after deletion 4 years ago
vocal.php new site after deletion 4 years ago

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(); });