I am working on development of an RoR site that needs to display a small streaming video on a page. My first choice is to use Flash 8 and the off the shelf skins for playback controls. Anyone have experience using this and deploying to RoR? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
well you would deploy it the same way you would a flash file. just use the streaming flash instead. ever do streaming flash? On 6/12/07, rocky <rlaber-n7ynwM9pV41LdZBKzJmsdNBPR1lH4CV8@public.gmane.org> wrote:> > I am working on development of an RoR site that needs to display a > small streaming video on a page. My first choice is to use Flash 8 > and the off the shelf skins for playback controls. Anyone have > experience using this and deploying to RoR? > > > > >--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
> I am working on development of an RoR site that needs to display a > small streaming video on a page. My first choice is to use Flash 8 > and the off the shelf skins for playback controls. Anyone have > experience using this and deploying to RoR?We announced an open source Rails Flash video streaming solution on this mailing list just yesterday. Check it out at http://www.nedforce.nl. -- Roderick van Domburg Nedforce <http://www.nedforce.nl/> --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
> I am working on development of an RoR site that needs to display a > small streaming video on a page. My first choice is to use Flash 8 > and the off the shelf skins for playback controls. Anyone have > experience using this and deploying to RoR?Flowplayer.... http://flowplayer.sourceforge.net/ "FlowPlayer is a free Flash video player. You can easily embed it into HTML pages to play FLV files. FlowPlayer supports progressive downloading and true streaming." --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
I''m appreciative of the replies I got on this topic. Part of the problem has been that I can''t really test the outcome locally, SVN and a file repository are in use on a web server development environment. Here''s how I ended up handling it. I''m using swfobject.js to ensure browser/platform compatibility. Repository and live files are on separate domains 1. upload flv to web server where live files reside 2. Create FLA file 3. import flv from webserver location, using absolute URL (http:// www.domainname.com/swf/video.flv 4. specify skin using relative URL (/swf/SkinName.swf) 5. publish swf 6. use swfobject-compatible code in rhtml file: <script type="text/javascript" src="swfobject.js"></script> <div id="flashcontent"> This text is replaced by the Flash movie. </div> <script type="text/javascript"> var so = new SWFObject("/swf/SWFname.swf", "SWFame", "320", "280", "8", "#ffffff"); so.write("flashcontent"); </script> 7. commit files to web server repository 8. update to live webserver On Jun 12, 6:07 am, rocky <rla...-n7ynwM9pV41LdZBKzJmsdNBPR1lH4CV8@public.gmane.org> wrote:> I am working on development of an RoR site that needs to display a > small streaming video on a page. My first choice is to use Flash 8 > and the off the shelf skins for playback controls. Anyone have > experience using this and deploying to RoR?--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---