Lomatus

Results 2 comments of Lomatus

`ffmpeg -ss 00:00:07.2630000 -to 00:00:31 -i input.mp4 -c copy output.mp4` works for me in console only. the trim tools not work, maybe the verison of ffmpeg cause the exception.

My Dockerfile to build and install from source code: ```Dockerfile FROM ubuntu:latest as build RUN apt-get update RUN apt-get install -y build-essential libbison-dev libreadline-dev libssl-dev wget flex zlib1g-dev WORKDIR /src/...