Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/woome/camera_upload
A simple actionscript uploader doing multipart form submission
https://github.com/woome/camera_upload
Last synced: 3 months ago
JSON representation
A simple actionscript uploader doing multipart form submission
- Host: GitHub
- URL: https://github.com/woome/camera_upload
- Owner: woome
- Created: 2011-03-13T00:54:26.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2011-03-13T01:29:02.000Z (over 13 years ago)
- Last Synced: 2024-06-23T19:33:29.126Z (5 months ago)
- Language: ActionScript
- Homepage:
- Size: 309 KB
- Stars: 3
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.creole
Awesome Lists containing this project
- awesome-actionscript-sorted - camera_upload - A simple actionscript uploader doing multipart form submission (Multimedia / Camera)
README
A web camera uploader in ActionScript (with a demo in django).
This is an amalgamation of two other projects:
* [[http://code.google.com/p/jpegcam/|an excellent webcam uploader]]
* [[http://code.google.com/p/in-spirit/wiki/MultipartURLLoader|a multipart form maker]]The webcam tool is built on [[https://github.com/mikechambers/as3corelib|Mike Chambers as3 library]],
code from which is included in this project.The point of this is that everything in here should be completly self
contained ///except/// the need for a flex compiler.== Prerequesites ==
* flex sdk 3.5 compiler
* ant
* [[veh|http://github.com/nicferrier/veh]]== Building ==
To build the AS3 source use ant:
{{{
ant
}}}To make the django app, use veh to pull dependancies:
{{{
veh shell -- cd siteapp \; python manage.py syncdb
veh shell -- cd siteapp \; python manage.py runserver 8008
}}}Now visit {{{http://localhost:8008}}} and you should be seeing the camera app.