Changeset 4703
- Timestamp:
- 03/14/14 16:34:15 (11 years ago)
- Location:
- media_conv
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
media_conv/README.markdown
r4701 r4703 45 45 ## Future work 46 46 47 === Goals === 48 1. Make more robust: currently the conversion process creates a temporary file for each request that isn't being cleaned up. Move to a performant and stable database/key-value store. 47 1. Make more robust: currently the conversion process creates a temporary file with the converted media data for each succesful request. Move to a performant and stable database/key-value store. 49 48 2. Handle more types of media. -
media_conv/production.ini
r4701 r4703 7 7 use = egg:media_conv 8 8 caching = false 9 max_ threads = 259 max_n_threads = 25 10 10 ffmpeg_command = ffmpeg 11 11 -
media_conv/src/media_conv/__init__.py
r4701 r4703 28 28 except (KeyError, TypeError, ValueError) as e: 29 29 logger.error("Waitress configuration error. " + pprint.pformat(e)) 30 raise 30 31 else: 31 32 32 setrlimit(RLIMIT_NPROC, (settings['max_n_threads'], settings['max_n_threads'])) 33 33
Note: See TracChangeset
for help on using the changeset viewer.