-
Notifications
You must be signed in to change notification settings - Fork 46
/
grayify-video.sh
31 lines (27 loc) · 1.33 KB
/
grayify-video.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#! /bin/sh
# SCAR - Serverless Container-aware ARchitectures
# Copyright (C) GRyCAP - I3M - UPV
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# 1. The video uploaded to the "input" folder of the S3 bucket will be made available
# for the container in /tmp/$REQUEST_ID/input (path indicated in the $INPUT_FILE_PATH variable)
# 2. The video will be converted using ffmpeg
# 3. The output video generated in /tmp/$REQUEST_ID/output will be automatically uploaded to the output
# folder of the S3 bucket.
#
echo "SCRIPT: Invoked Video Grayifier. File available in $INPUT_FILE_PATH"
FILENAME=`basename $INPUT_FILE_PATH .avi`
OUTPUT_FILE=$TMP_OUTPUT_DIR/$FILENAME
echo "SCRIPT: Converting input video file $INPUT_FILE_PATH to grayscale to output file $OUTPUT_FILE.avi"
ffmpeg -loglevel panic -nostats -i $INPUT_FILE_PATH -vf format=gray $OUTPUT_FILE.avi < /dev/null