OLD | NEW |
(Empty) | |
| 1 # |
| 2 # Your AWS Credentials |
| 3 # You only need to supply these in this file if you are not using |
| 4 # the boto tools to start your service |
| 5 # |
| 6 #[Credentials] |
| 7 #aws_access_key_id = <AWS Access Key Here> |
| 8 #aws_secret_access_key = <AWS Secret Key Here> |
| 9 |
| 10 # |
| 11 # Fill out this section if you want emails from the service |
| 12 # when it starts and stops |
| 13 # |
| 14 #[Notification] |
| 15 #smtp_host = <your smtp host> |
| 16 #smtp_user = <your smtp username, if necessary> |
| 17 #smtp_pass = <your smtp password, if necessary> |
| 18 #smtp_from = <email address for From: field> |
| 19 #smtp_to = <email address for To: field> |
| 20 |
| 21 [Pyami] |
| 22 scripts = boto.services.sonofmmm.SonOfMMM |
| 23 |
| 24 [SonOfMMM] |
| 25 # id of the AMI to be launched |
| 26 ami_id = ami-dc799cb5 |
| 27 # number of times service will read an empty queue before exiting |
| 28 # a negative value will cause the service to run forever |
| 29 retry_count = 5 |
| 30 # seconds to wait after empty queue read before reading again |
| 31 loop_delay = 10 |
| 32 # average time it takes to process a transaction |
| 33 # controls invisibility timeout of messages |
| 34 processing_time = 60 |
| 35 ffmpeg_args = -y -i %%s -f mov -r 29.97 -b 1200kb -mbd 2 -flags +4mv+trell -aic
2 -cmp 2 -subcmp 2 -ar 48000 -ab 19200 -s 320x240 -vcodec mpeg4 -acodec libfaac
%%s |
| 36 output_mimetype = video/quicktime |
| 37 output_ext = .mov |
| 38 input_bucket = <S3 bucket where source videos live> |
| 39 output_bucket = <S3 bucket where converted videos should be stored> |
| 40 output_domain = <SimpleDB domain to store results - optional> |
| 41 output_queue = <SQS queue to store results - optional> |
| 42 input_queue = <SQS queue where work to be done will be queued up> |
| 43 |
OLD | NEW |