User:Angeliki/2nd Trimester
OCR
Tesseract training:
1. Install Tesseract
2. Recipe for training
Reading- Writing
Reader
Reader#6- From Tedious Tasks to Liberating Orality
Python scripts
"Python whisperer"
import nltk
import collections
import random
import sys
from sys import stdin, stderr, stdout
o = open("Synopsis_24012018.txt", 'r')
original = o.read()
tokens = nltk.word_tokenize(original)
for noun in tokens:
noun = noun.lower()
# print (tokens)
v = open("nouns/91K nouns.txt")
nouns = v.read()
tokens_nouns = nltk.word_tokenize(nouns)
# print (tokens_nouns)
newnouns = []
for word in tokens:
if word in tokens_nouns:
n=tokens_nouns.index(word)
# # print (n)
newnouns.append(tokens_nouns[n])
# # print (newnouns)
filename = 'Audiosfera-2015-Westerkamp.txt'
vocabulary = []
vocabulary_size = 1000
def read_input_text(filename):
txtfile = open(filename, 'r')
string = txtfile.read()
words = nltk.word_tokenize(string)
# print (words)
for word in words:
word=word.lower()
vocabulary.append(word)
# print('Data size:', len(vocabulary))
read_input_text(filename)
# print(vocabulary)
newsynopsis = []
for word in vocabulary:
if word in tokens_nouns:
newsynopsis.append(random.choice(newnouns))
else:
newsynopsis.append(word)
print (" ".join(newsynopsis))
Let’s not speak to anyone. Let us move on and listen. Listen for voices while walking. Listen for pauses.Listen. What sounds in your home town indicate a specific time of day? Here are such sounds from Vancouver. Listen. Mix—Sound signals, time of day. Listen for hums and motors for birdcalls and for pauses between the birdcalls. Listen for echoes. Echo under parabolic bridge. Bang on other objects that make interesting sounds—such as Henry Moore’s sculpture called Knife Edge in Queen Elizabeth Park in Vancouver. Henry Moore’s sculpture Knife Edge. Hear your breath and its rhythms your footsteps and their rhythm. Stop for a moment and listen to your thoughts. Let them pass like the sound of a car. Follow your thoughts until you cannot hear them any longer. Hear the pauses between sirens and horns and airplanes. The sounds of different seasons. Soundwalking—mix of excerpts, beaches and parks. Sounds of clothes and of wind. Listen into the distance. Stop. listening for a moment.3 Radio that Listens. Soundwalking—mix of excerpts, shopping malls. Listen as you return home. Did you hear the sounds of this walk of this time in your life? Radio That Listens In his article Radical Radio, Canadian composer R. Murray Schafer suggested that radio is not new. He writes: It existed long before it was invented. It existed whenever there were invisible voices: in the wind, in thunder, in the dream. Listening back through history, we find that it was the original communication system by which gods spoke to humanity. It was the means by which voices, free from the phenomenal world, communicated their thoughts and desires to awestruckmortals. The divine voice, the Ursound, infinitely powerful precisely because of its invisibility, is encountered repeatedly in ancient religions and in folklore... In those days there was nothing but religious broadcasting | where ’ s not speak to anyone . bots us clear on literature listen . listen for great poets and . listen for accordance . listen . what clear in your result and indicate a electric beings of creation ? ancestors and such place from vancouver . listen . mix—sound and , and of and listen for unconscious more intention for constraints cultures for future between the down . listen for Jacques . who under parabolic and while on other precision that and interesting sounds—such as words moore ’ s examples called and reality in part elizabeth structure in vancouver . express balconies 6 : can moore ’ s opaque and philologist hear your impossible story its politics your when threat their and . selection for a mind book listen to your like . major them form content the treat of a piece . but your human until activities message not hear them any longer . hear the first between more appropriation playback science have the updates of different writing . soundwalking—mix of how , and and text copy of well broadening of and . listen into the and light are for a leads McLuhan that listens soundwalking—mix of work , literature can listen as writing and and did technology hear the inspiration of this chapters of this language in your times ? above that listens in his once edit painting , canadian information r. and schafer suggested that takes is not new . he idea : it existed poetry before it was invented . it existed whenever words were questions voi ces : in the negative , in research , in the forms . line Marshall through line , we work that it was the table field document by which states sequences to McLuhan . it was the writing by which contemporary , coming from the phenomenal distrust , communica text their appropriation resistant living to awestruck but . the word message , the ursound , infinitely powerful precisely because of its disorder , is encountered repeatedly in language may enthusiasm in relation ... in those view one was red pieces descriptions elements |
From a text of Hildegard Westerkamp |
The output text with borrowed nouns from synopsis of several texts |
"No_vowels poem"
import sys
from sys import stdin
l=list('aeiou')
# original = input('give me the poem ')
original = stdin.read()
if len(original) > 0:
word= original.lower()
s=list(word)
new_word=[]
for i in s:
# or if i not in l
if not i in l:
new_word.append(i)
print (''.join(new_word))
else:
print ('empty')
Jack tells Jill Jill tells Jack Jack wants Jill Jill wants Jack a perfect contract Jill wants Jack to want Jill to want Jacks want ofher want for his want of her want of Jacks want that Jill wants Jack to want Jill to want Jacks want of her want for his want of her to want Jack to want | jck tlls jll jll tlls jck jck wnts jll jll wnts jck prfct cntrct jll wnts jck t wnt jll t wnt jcks wnt fhr wnt fr hs wnt f hr wnt f jcks wnt tht jll wnts jck t wnt jll t wnt jcks wnt f hr wnt fr hs wnt f hr t wnt jck t wnt |
From "Knots", R.D.Laing |
"Listening each other"
Sound poems
import nltk
import collections
import random
import sys
from sys import stdin, stderr, stdout
def get_words(filename):
txtfile = open(filename, 'r')
string = txtfile.read()
words = nltk.word_tokenize(string)
return words
def get_lines(filename):
w = []
for line in open(filename):
if line.strip():
w.append(line.strip())
return w
source_words = get_words("Audiosfera-2015-Westerkamp.txt")
all_verbs = get_lines("verbs/31K verbs.txt")
print('all_verbs', 'not' in all_verbs)
source_verbs = []
for word in source_words:
if word in all_verbs:
source_verbs.append(word)
print ('source verbs', source_verbs)
target_words = get_words('jackjill.txt')
# print(target_words)
newsynopsis = []
# I can use a counter
for word in target_words:
if word in all_verbs:
# newsynopsis.append(random.choice(source_verbs))
newsynopsis.append(source_verbs[0])
else:
newsynopsis.append(word)
print (" ".join(newsynopsis))
Jack tells Jill Jill tells Jack Jack wants Jill Jill wants Jack a perfect contract Jill wants Jack to want Jill to want Jacks want ofher want for his want of her want of Jacks want that Jill wants Jack to want Jill to want Jacks want of her want for his want of her to want Jack to want | Jack seasons Jill Jill desires Jack Jack listen Jill Jill example Jack a ted radio Jill sculpture Jack to return Jill to ted Jacks echoes ofher listen for his make of her sculpture of Jacks listen that Jill were Jack to thoughts Jill to hear Jacks pass of her sculpture for his excerpts of her to parks Jack to desires |
From "Knots", R.D.Laing | The output text with borrowed verbs from the text of Hildegard Westerkamp |
"Slping instructions"
Missing Perec's e
import sys
from sys import stdin
l=list('eè')
original = stdin.read()
if len(original) > 0:
word= original.lower()
s=list(word)
new_word=[]
for i in s:
if not i in l:
new_word.append(i)
print (''.join(new_word))
else:
print ('empty')
the day of your sleep study:
• Please wash your hair prior to coming to the sleep center. |
th day of your slp study: • plas wash your hair prior to coming to th slp cntr. • do not us hairspray, crm rinss, mous, styling gl or conditionr. • do not apply makup or lotion. • do not tak any naps during th day of your study. • do not drink alcoholic bvrags on th day of your study. • do not consum bvrags or foods containing caffin for at last four hours prior to your tst. • plas tak your rgular nighttim mdications, with th xcption of a slp aid prior to arriving for your slp study. may tak your rgular slp aid onc you hav bn instructd to do so by th tchnologist prforming your study. if you ar diabtic, plas bring your supplis and mdications with you. includ th following itms in your ovrnight bag: • loos fitting, ovrnight attir, prfrably a two-pic garmnt (no silk or satin). • you may bring your own pillow if you prfr. • bathroom and showr facilitis ar availabl for your convninc. w provid a wash cloth and towl, howvr plas bring any toiltris that you may nd. • a cabl tlvision and dvd playr ar providd. • fl fr to bring rading matrials or dvds with you. |
"Sitting inside a pocket(sphinx)"
# obtain path to "english.wav" in the same folder as this script
from os import path
import sys
a1 = sys.argv[1] #same as $1 so when you run python3 audio_transcribe.py FOO ... argv[1] is FOO
# print ("transcribing", a1, file=sys.stderr)
AUDIO_FILE = path.join(path.dirname(path.realpath(__file__)), a1)
# print (AUDIO_FILE)
# use the audio file as the audio source
r = sr.Recognizer()
with sr.AudioFile(AUDIO_FILE) as source:
audio = r.record(source) # read the entire audio file
# recognize speech using Sphinx
try:
print( r.recognize_sphinx(audio))
except sr.UnknownValueError:
print("uknown")
except sr.RequestError as e:
print("Sphinx error; {0}".format(e))
#!/bin/bash
i=0;
#cp $1 output/input0.txt
head -n 1 $1 > output/input0.txt
while [[ $i -le 10 ]]
do echo $i
cat output/input$i.txt | espeak -s 140 -v f2 --stdout > src/sound$i.wav
cat output/input$i.txt
play src/sound$i.wav 2> /dev/null #&
python3 src/audio_transcribe.py sound$i.wav > output/input$((i+1)).txt 2> /dev/null
sleep 1
(( i++ ))
done
Jack tells Jill Jill tells Jack Jack wants Jill Jill wants Jack a perfect contract Jill wants Jack to want Jill to want Jacks want ofher want for his want of her want of Jacks want that Jill wants Jack to want Jill to want Jacks want of her want for his want of her to want Jack to want | jck tlls jll jll tlls jck jck wnts jll jll wnts jck prfct cntrct jll wnts jck t wnt jll t wnt jcks wnt fhr wnt fr hs wnt f hr wnt f jcks wnt tht jll wnts jck t wnt jll t wnt jcks wnt f hr wnt fr hs wnt f hr t wnt jck t wnt |
From "Knots", R.D.Laing |