balgarath / video-app
- Source
- Commits
- Network (1)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
Ralph (author)
Mon Mar 30 22:29:53 -0700 2009
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Mon Mar 30 02:51:51 -0700 2009 | |
| |
README | Mon Mar 30 03:32:23 -0700 2009 | |
| |
Rakefile | Wed Mar 25 10:30:25 -0700 2009 | |
| |
app/ | Sun Mar 29 11:29:00 -0700 2009 | |
| |
config/ | Mon Mar 30 22:27:53 -0700 2009 | |
| |
db/ | Sun Mar 29 02:57:35 -0700 2009 | |
| |
doc/ | Sat Jan 24 02:34:23 -0800 2009 | |
| |
lib/ | Mon Mar 30 22:27:53 -0700 2009 | |
| |
log/ | Mon Mar 30 22:28:08 -0700 2009 | |
| |
public/ | Mon Mar 30 22:00:53 -0700 2009 | |
| |
script/ | Sat Jan 24 02:34:23 -0800 2009 | |
| |
test/ | Mon Mar 30 02:51:51 -0700 2009 | |
| |
vendor/ | Sun Mar 29 02:57:35 -0700 2009 |
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

