added transcritpions and images
parent
53e60751a5
commit
04691ea8c5
@ -0,0 +1,10 @@
|
||||
from pydub.utils import mediainfo
|
||||
from pydub import AudioSegment
|
||||
import argparse
|
||||
|
||||
ap = argparse.ArgumentParser("metadatatohtml")
|
||||
ap.add_argument("mp3")
|
||||
args = ap.parse_args()
|
||||
|
||||
sound= AudioSegment.from_file(args.mp3, format="mp3")
|
||||
file=sound.export(args.mp3, tags={"title":"Channeling Speech", "narrator":"angeliki", "topic":"transcribing, translating, human microphone, mediating each other's speech"})
|
@ -0,0 +1,38 @@
|
||||
from pydub import AudioSegment
|
||||
from pydub.utils import mediainfo
|
||||
import pprint
|
||||
import argparse
|
||||
|
||||
ap = argparse.ArgumentParser("metadatatohtml")
|
||||
ap.add_argument("mp3")
|
||||
args = ap.parse_args()
|
||||
|
||||
z = mediainfo(args.mp3)
|
||||
|
||||
# sound= AudioSegment.from_file("podcasts/3_podcast.mp3", format="mp3")
|
||||
# file=sound.export("out.mp3", tags={"podcaster":"lain"})
|
||||
# print (mediainfo("out.mp3"))
|
||||
|
||||
|
||||
def dict_to_html(dd, level=0):
|
||||
"""
|
||||
Convert dict to html using basic html tags
|
||||
"""
|
||||
import simplejson
|
||||
text = ''
|
||||
for k, v in dd.items():
|
||||
text += '<br>' + ' '*(4*level) + '<b>%s</b>: %s' % (k, dict_to_html(v, level+1) if isinstance(v, dict) else (simplejson.dumps(v) if isinstance(v, list) else v))
|
||||
return text
|
||||
|
||||
def dict_to_html_ul(dd, level=0):
|
||||
"""
|
||||
Convert dict to html using ul/li tags
|
||||
"""
|
||||
import simplejson
|
||||
text = '<ul>'
|
||||
for k, v in dd.items():
|
||||
text += '<li><b>%s</b>: %s</li>' % (k, dict_to_html_ul(v, level+1) if isinstance(v, dict) else (simplejson.dumps(v) if isinstance(v, list) else v))
|
||||
text += '</ul>'
|
||||
return text
|
||||
|
||||
print (dict_to_html_ul(z, level=0))
|
@ -1 +1 @@
|
||||
This is a documentation of a series of meetings/workshops I am organising together with Christina Karagianni. Our intentions come from personal experiences and we seek to explore the silencing of excluded voices, and go beyond their barriers. We combine our practices -her practice lies on choreography and dance and mine on social interaction, voice and sound- in moments of <a href="http://www.leeszaalrotterdamwest.nl/" >Leeszaal</a>, an open local library, a public space of diversity. How can we engage politically with the exclusion of specific voices from the public sphere? Here I document my attempts to create a safe common space of trying methods and discussing that topic in Leeszaal, an open library that I consider a diverse public space. I am borrowing methods from feminist groups and protest movements and vocal warming up exercises by Pauline Oliveros. For example, protesters would amplify the speaker's voice by repeating collectively their speech to make their presence visible. Feminists would create safe spaces where women could speak about domestic violence and make a dialogue based on listening. Some methods are vocal performances in situ, the "human microphone", speech acts, listening practices, making podcasts, mediating speech, transform our voices, situated experiments. <div class="tooltip-wrap" style="display: inline;text-decoration:underline;">We invite <div class="tooltip-content-right" ><div>how we should approch the gender terminology and false association with voice when inviting people? Should it be about femme sounding? Female voice? </div></div></div>people from Leeszaal and our environment, who find themselves related and interested to this topic. Elements from the meetings: discuss previous material, reading extracts in random order, <div class="tooltip-wrap" style="display: inline;text-decoration:underline;">discuss <div class="tooltip-content-right" ><div>what conflicts or frictions the technical aspect provokes? web-audio, recordings</div></div></div>personal associations and experiences with voice in public, warm up, say a sentence of personal experience in any language, transcribe only the vowels, read back the vowels, read outloud all together the score of vowels, repeat sentences with distorted voice, make podcasts. The produced material is being included in an audio archive, the player.
|
||||
This is a documentation of a series of meetings/workshops I am organising together with Christina Karagianni. Our intentions come from personal experiences and we seek to explore the silencing of excluded voices, and go beyond their barriers. We combine our practices -her practice lies on choreography and dance and mine on social interaction, voice and sound- in moments of <a href="http://www.leeszaalrotterdamwest.nl/" >Leeszaal</a>, an open local library, a public space of diversity. How can we engage politically with the exclusion of specific voices from the public sphere? We are borrowing methods from feminist groups and protest movements and vocal warming up exercises by Pauline Oliveros. For example, protesters would amplify the speaker's voice by repeating collectively their speech to make their presence visible. Feminists would create safe spaces where women could speak about domestic violence and make a dialogue based on listening. <div class="tooltip-wrap" style="display: inline;text-decoration:underline;">We invite <div class="tooltip-content-right" ><div>how we should approch the gender terminology and false association with voice when inviting people? Should it be about femme sounding? Female voice? </div></div></div>people from Leeszaal and our environment, who find themselves related and interested to this topic. Elements from the meetings: discuss previous material, reading extracts in random order, <div class="tooltip-wrap" style="display: inline;text-decoration:underline;">discuss <div class="tooltip-content-right" ><div>what conflicts or frictions the technical aspect provokes? web-audio, recordings</div></div></div>personal associations and experiences with voice in public, warming up, say a sentence of personal experience in any language, transcribe only the vowels of it, read back the vowels, read outloud all together the score of vowels, speak with distorted voice, make podcasts. The produced material is being included in an audio archive, the player.
|
||||
|
Loading…
Reference in New Issue