Video on Rails?

Hi,

Looking for a gem/plugins with the purpose of uploading/encode/decode video's to flash.

Someone ideas?

Grtz..remco

Remco Swoany wrote:

Hi,

Looking for a gem/plugins with the purpose of uploading/encode/decode video's to flash.

Someone ideas?

Grtz..remco

Basically you are asking for vimeo's source code... All the tools exists as free software, it's up to you to code the glue to make the pieces stick together.

Hi Remco,

You may have interests on our AnkoderOnRails plugin :slight_smile:

http://doc.ankoder.com/

- Jan

* Remco Swoany <rails-mailing-list@andreas-s.net> [2008-12-17 10:33:33 +0100]:

Remco Swoany wrote:

Looking for a gem/plugins with the purpose of uploading/encode/decode video's to flash.

Check out WhooTube at http://www.nedforce.com/products/whootube-flash-video-community-portal/. It's been a while since it's been updated, but you should be able to get it up and running without too much hassle.

http://code.google.com/p/rvideo/

Roderick van Domburg wrote:

Remco Swoany wrote:

Looking for a gem/plugins with the purpose of uploading/encode/decode video's to flash.

Check out WhooTube at http://www.nedforce.com/products/whootube-flash-video-community-portal/. It's been a while since it's been updated, but you should be able to get it up and running without too much hassle.

-- Roderick van Domburg http://www.nedforce.com

Hi Roderick,

I just download the WhooTube app. Great software, just the code i am looking for.

I think there are some upgrade issues. A secret is required to generate an integrity hash for cookie session data. So i added, config.action_controller.session in my env.

After that i get the message

NoMethodError (protected method `with_scope' called for #<Class:0x1f5cc50>)

I think it is a security issue...can you give me some advice..

Thanks...

remco

Hi Remco,

Roderick van Domburg wrote:

Check out WhooTube at http://www.nedforce.com/products/whootube-flash-video-community-portal/. It's been a while since it's been updated, but you should be able to get it up and running without too much hassle.

I think there are some upgrade issues. A secret is required to generate an integrity hash for cookie session data. So i added, config.action_controller.session in my env.

After that i get the message

NoMethodError (protected method `with_scope' called for #<Class:0x1f5cc50>)

I think it is a security issue...can you give me some advice..

with_scope has become protected in later Rails versions. You should rewrite it to use named_scope in the model instead.