gitextract_71m5k7op/ ├── .github/ │ ├── CONTRIBUTING.md │ ├── ISSUE_TEMPLATE.md │ └── workflows/ │ └── ci.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── Makefile ├── README.md ├── doc/ │ ├── FfmpegCommand.html │ ├── audio.js.html │ ├── capabilities.js.html │ ├── custom.js.html │ ├── ffprobe.js.html │ ├── fluent-ffmpeg.js.html │ ├── global.html │ ├── index.html │ ├── inputs.js.html │ ├── misc.js.html │ ├── options_audio.js.html │ ├── options_custom.js.html │ ├── options_inputs.js.html │ ├── options_misc.js.html │ ├── options_output.js.html │ ├── options_video.js.html │ ├── options_videosize.js.html │ ├── output.js.html │ ├── processor.js.html │ ├── recipes.js.html │ ├── scripts/ │ │ ├── linenumber.js │ │ └── prettify/ │ │ ├── Apache-License-2.0.txt │ │ ├── lang-css.js │ │ └── prettify.js │ ├── styles/ │ │ ├── jsdoc-default.css │ │ ├── prettify-jsdoc.css │ │ └── prettify-tomorrow.css │ ├── utils.js.html │ ├── video.js.html │ └── videosize.js.html ├── examples/ │ ├── any-to-mp4-steam.js │ ├── express-stream.js │ ├── flowplayer/ │ │ ├── flowplayer.controls.swf │ │ ├── flowplayer.swf │ │ └── index.html │ ├── full.js │ ├── image2video.js │ ├── input-stream.js │ ├── livertmp2hls.js │ ├── mergeVideos.js │ ├── metadata.js │ ├── preset.js │ ├── progress.js │ ├── stream.js │ └── thumbnails.js ├── index.js ├── lib/ │ ├── capabilities.js │ ├── ffprobe.js │ ├── fluent-ffmpeg.js │ ├── options/ │ │ ├── audio.js │ │ ├── custom.js │ │ ├── inputs.js │ │ ├── misc.js │ │ ├── output.js │ │ ├── video.js │ │ └── videosize.js │ ├── presets/ │ │ ├── divx.js │ │ ├── flashvideo.js │ │ └── podcast.js │ ├── processor.js │ ├── recipes.js │ └── utils.js ├── package.json ├── test/ │ ├── aliases.test.js │ ├── args.test.js │ ├── assets/ │ │ ├── ffserver.conf │ │ ├── presets/ │ │ │ └── custompreset.js │ │ ├── te[s]t_ video ' _ .flv │ │ ├── teststream.ffm │ │ └── testvideo-5m.mpg │ ├── capabilities.test.js │ ├── helpers.js │ ├── metadata.test.js │ ├── processor.test.js │ └── utils.test.js └── tools/ ├── jsdoc-aliases.js ├── jsdoc-conf.json └── jsdoc-template/ ├── README.md ├── publish.js ├── static/ │ ├── scripts/ │ │ ├── linenumber.js │ │ └── prettify/ │ │ ├── Apache-License-2.0.txt │ │ ├── lang-css.js │ │ └── prettify.js │ └── styles/ │ ├── jsdoc-default.css │ ├── prettify-jsdoc.css │ └── prettify-tomorrow.css └── tmpl/ ├── aliases.tmpl ├── container.tmpl ├── details.tmpl ├── example.tmpl ├── examples.tmpl ├── exceptions.tmpl ├── layout.tmpl ├── mainpage.tmpl ├── members.tmpl ├── method.tmpl ├── params.tmpl ├── properties.tmpl ├── returns.tmpl ├── source.tmpl ├── tutorial.tmpl └── type.tmpl