Video converter based on ffmpeg to transcode files to format compatible with Davinci Resolve
274
This simple node app converts all files inside a folder and subfolder in a format to import into Davinci Resolve. In case of video files it encodes to prores codec, and for audio files the destination codec is wav.
When executes as docker container, source files must be mapped to /source and destination folder to /destination
docker run --rm \
-v <source_folder>:/source:ro \
-v <destination_folder>:/destination \
-e OVERWRITE=1 \
-e QUALITY=mid \
danitetus/davinci-converter:latest
(Option parameters overwrite environment variables)
DEBUGThis is optional. When setted to 1 the ffmpeg output raw data is showed on stdout and the progress bar is hidden.
PROGRESSThis is optional. When setted to 0, the progress bar is not showed. By default progress bar is printed.
OVERWRITEThis is optional. If set to 1 and file exists on destination overwrites it.
QUALITYThis is optional. Defines the output quality (low, mid, high, extreme). Default is low
SOURCEThis is optional. Defines source folder. Default is /source (you have to map this volume)
DESTINATIONThis is optional. Defines destination folder. Default is /destination (you have to map this volume)
View LICENSE file for the software contained in this image.
As with all Docker images, these likely also contain other software which may be under other licenses (such as Bash, ffmpeg, node, etc from the base distribution, along with any direct or indirect dependencies of the primary software being contained).
As for any pre-built image usage, it is the image user's responsibility to ensure that any use of this image complies with any relevant licenses for all software contained within.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Content type
Image
Digest
Size
448.9 MB
Last updated
over 6 years ago
docker pull danitetus/davinci-converter