├── .gitignore ├── README.md ├── functions ├── fail │ └── index.py ├── succ │ └── index.py └── transcode │ └── index.py └── s.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | .s 2 | .env -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-fc/simple-video-processing/HEAD/README.md -------------------------------------------------------------------------------- /functions/fail/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-fc/simple-video-processing/HEAD/functions/fail/index.py -------------------------------------------------------------------------------- /functions/succ/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-fc/simple-video-processing/HEAD/functions/succ/index.py -------------------------------------------------------------------------------- /functions/transcode/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-fc/simple-video-processing/HEAD/functions/transcode/index.py -------------------------------------------------------------------------------- /s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-fc/simple-video-processing/HEAD/s.yaml --------------------------------------------------------------------------------