Hi,
I found a way to have it work :
I added webm type handling in files.js :
var filetypes = {
find: function(ft)
{
var dflt = { value: 'text/html', encoding: 'utf8' };
if (ft) switch (ft.toLowerCase())
{
case 'ico':
return { value: 'image/icon', encoding: false };
case 'webm':
return { value: 'video/webm', encoding: false };
...
FrD
On Sunday, October 28, 2012 2:59:48 PM UTC+1, FrD wrote:
>
> Hi Poul,
>
> I'm using TWS with a tiddlywiki that shows some videos in webm format so
> that both Chrome and Firefox can display them without the help of a plugin.
>
> Her is the typical content of a video tiddler :
> <html>
> </br>
> <video width="480" height="384" poster="./image.png" controls="controls">
> <source src="./video.webm" />
> </video>
> </html>
>
> The image (image.png) is displayed but I can't play the vidéo.
> It works when the TW is directly loaded in Chrome or Firefox.
>
> Any Idea of what causes this problem ?
>
> Thanks
>
> FrD
>
>
--
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/tiddlywiki/-/vvohgz53_YkJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/tiddlywiki?hl=en.