public
Description: Youtube-like site written in Rails. Uses ffmpeg, flowplayer, attachment_fu, authlogic, acts_as_taggable_on_steroids
Homepage: http://railsonedge.blogspot.com/2009/01/flash-video-tutorial-with-rails-ffmpeg.html
Clone URL: git://github.com/balgarath/video-app.git
Click here to lend your support to: video-app and make a donation at www.pledgie.com !
name age message
file .gitignore Mon Mar 30 02:51:51 -0700 2009 cleanup [balgarath]
file README Mon Mar 30 03:32:23 -0700 2009 updated readme [balgarath]
file Rakefile Wed Mar 25 10:30:25 -0700 2009 video replies [balgarath]
directory app/ Sun Mar 29 11:29:00 -0700 2009 initial 0.2 commit [balgarath]
directory config/ Mon Mar 30 22:27:53 -0700 2009 removed .gitignore [Ralph]
directory db/ Sun Mar 29 02:57:35 -0700 2009 user authentication in, mostly [balgarath]
directory doc/ Sat Jan 24 02:34:23 -0800 2009 initial commit [Ralph]
directory lib/ Mon Mar 30 22:27:53 -0700 2009 removed .gitignore [Ralph]
directory log/ Mon Mar 30 22:28:08 -0700 2009 Merge branch '0.2' of git@github.com:balgarath/... [Ralph]
directory public/ Mon Mar 30 22:00:53 -0700 2009 stylesheet changes [balgarath]
directory script/ Sat Jan 24 02:34:23 -0800 2009 initial commit [Ralph]
directory test/ Mon Mar 30 02:51:51 -0700 2009 cleanup [balgarath]
directory vendor/ Sun Mar 29 02:57:35 -0700 2009 user authentication in, mostly [balgarath]
README
Author: Ralph Edge
Blog: http://railsonedge.blogspot.com
Portfolio: http://www.ralphedge.com

  Video-App is a YouTube-like site written in rails.  It converts video to flash(ffmpeg) and plays videos using 
  FlowPlayer(an open-source flash video player).  Has Pagination(will_paginate), Tagging/Tag 
  Cloud(acts_as_taggable_on_steroids), User Authentication(authlogic), Video Replies, and Video Thumbnails.  Video 
  conversion is done in a seperate process, using the Spawn plugin.  Uses Rails Version 2.2.2...you can change the Rails 
  version it uses in config/environment.rb

To Install: (let me know if I need to add anything to this)
  *Download the code: 

    git clone git://github.com/balgarath/video-app.git
    cd video-app

  *(Optional) switch to branch 0.2:  

    git fetch origin 0.2:0.2
    git checkout 0.2
    
  *Edit your config/databases.yml
  
  *Install will_paginate - if you don't have it already
    sudo gem install will_paginate
  
  *install ffmpeg - you may need to download and compile from source - http://www.ffmpeg.org/download.html
  
    In Ubuntu:
      sudo apt-get install ffmpeg
      
  *create and migrate database
    rake db:create
    rake db:migrate
    
  *launch server
    ./script/server