is it possible to generate/send video/audio using javascript ??

for example, see jspdf - http://jspdf.googlecode.com/svn/trunk/examples/basic.htm generate client side generated pdf file using base64 encoded datauri and embed the datauri !

Can similar approach be applied for generation of Ogg files ?

This can be useful for text to speech in browser.

link|improve this question

20% accept rate
feedback

4 Answers

I believe that wave/PCM is supported as an audio format by all browsers that support the media elements, so it should be relatively trivial to generate a data url for a pcm file.

Video is more difficult -- there isn't a standard codec for video, and possibly more importantly i doubt any js engine is fast enough yet to generate encoded video sufficiently quickly (given that native implementations have only relatively recently gotten to > realtime performance)

link|improve this answer
This depends on the dimensions, of course. Maybe it would be possible to use canvas to generate small videos (resolution-wise). However, we have that sluggish thing some call a "web browser". Macro$hit Idiot Exploiter is not going away soon. – Camilo Martin Dec 18 '09 at 5:01
feedback

You can embed video and audio data in data URIs

themaninblue has made a javascript drum machine

have a look at the source code as an example

link|improve this answer
feedback

Slightly offtopic, but if what you need is text to speech, you could split the text into chunks of up to 100 characters and use Google Translate TTS.

link|improve this answer
feedback

I just checked out Audiolet https://github.com/oampo/Audiolet - it's pretty slick

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.