transcription

Automated transcription software

I've noticed that the wiki transcriptions for some of the recent Stack Overflow Podcasts are kind of weak. Clearly, this task calls for a computer program. Is transcribing audio to text (ideally with speaker labels so we know who said what) something that could feasibly be accomplished in software? Are there any active open-source sof...

Storing Video and Indexing Content

Revisiting this in case someone has a suggestion: I've been asked to either create or find a system that meet the following requirements... 1) Allow upload of video files - Current solution: PHP to upload to a directory above the web root, and then I'll verify users before allowing access to stream. 2) Tag the files with meta info abo...

some php to ASP.NET

anyone kind enough to transcribe this php to ASP.NET ?? thank you kindly in advance. jJ <?php if(isset($_POST['data']) && $_POST['data'] != '') { $output = $_POST['data']; $newfile = time() . ".xml"; $file = fopen ($newfile, "w"); fwrite($file, $output); fclose ($file); echo 'file created: ' . $newfile; } else { echo "not...

Voice recognition with Julius. How to make .voca file?

Hello. I'm making a voice recognition system and Julius shows not bad results in this work. Words from sample .voca file are recognizing perfectly but how to place own words and transcriptions to the file? I've tried VoxForge (http://www.voxforge.org/) last release and nightly builds for acoustic models with their vocabulary but I've g...

java android. How show English transcription

Hi all, I have a txt file in UTF8 format: æ β ç ð ə ħ ŋ ø θ œ χ n d ŋ b a t d s t b a t d t d t d t ẽ u e ë l n e e m n l e β e e e ĕ e é ē è ȅ I need to show it in Android, but some symbol show not correct. How to show all symbol correct? Thanks ...