Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
2
2022-066
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
2022-066
2022-066
Commits
f4168abe
Commit
f4168abe
authored
May 13, 2022
by
ThushanSandeepa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
genarate text from audio file
parent
075144f8
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
41 additions
and
0 deletions
+41
-0
Backend/Python/video_to_text/text_gen.py
Backend/Python/video_to_text/text_gen.py
+41
-0
No files found.
Backend/Python/video_to_text/text_gen.py
0 → 100644
View file @
f4168abe
import
speech_recognition
as
sr
import
subprocess
import
os
import
sys
PYTHONIOENCODING
=
"UTF-8"
FOLDER_AUDIO
=
"audio_input"
FOLDER_TEXT
=
"text_output"
LANGUAGE
=
"en-US"
print
(
"starting..."
)
if
not
os
.
path
.
isdir
(
FOLDER_AUDIO
):
os
.
mkdir
(
FOLDER_AUDIO
)
if
not
os
.
path
.
isdir
(
FOLDER_TEXT
):
os
.
mkdir
(
FOLDER_TEXT
)
paths
=
[
os
.
path
.
join
(
FOLDER_AUDIO
,
nome
)
for
nome
in
os
.
listdir
(
FOLDER_AUDIO
)]
files
=
[
arq
for
arq
in
paths
if
os
.
path
.
isfile
(
arq
)]
wav_files
=
[
arq
for
arq
in
files
if
arq
.
lower
()
.
endswith
(
".wav"
)]
for
filename
in
wav_files
:
r
=
sr
.
Recognizer
()
with
sr
.
AudioFile
(
filename
)
as
source
:
audio
=
r
.
record
(
source
)
command
=
r
.
recognize_google
(
audio
,
language
=
'en-IN'
,
show_all
=
True
)
print
(
command
)
print
(
"running file {}"
.
format
(
filename
))
filefinal
=
filename
.
split
(
"audio_input
\\
"
)[
1
]
.
split
(
".wav"
)[
0
]
filefinal
=
'{}
\\
{}.txt'
.
format
(
FOLDER_TEXT
,
filefinal
)
with
open
(
filefinal
,
'w'
)
as
arq
:
arq
.
write
(
str
(
command
))
print
(
"create a new file {}"
.
format
(
filefinal
))
print
(
"finish"
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment