Created
February 25, 2010 06:49
-
-
Save rjungemann/314312 to your computer and use it in GitHub Desktop.
Sinatra helper for Cortado Java "HTML 5" movie viewer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'sinatra/base' | |
module CortadoSample | |
class App < Sinatra::Base | |
get "/" do | |
%{<video controls width="640" height="480"> | |
<source src="BigBuckBunny.ogv" type="video/ogg" /> | |
<!--<source src="video.mp4" type="video/mp4" />--> | |
<applet code="com.fluendo.player.Cortado.class" archive="cortado.jar" width="640" height="480"> | |
<param name="url" value="BigBuckBunny.ogv"/> | |
</applet> | |
</video>} | |
end | |
end | |
end | |
run Rack::Cascade.new([CortadoSample::App.new, Rack::File.new("public")]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment