mpc-be | Personal MPC-BE git svn clone
kandi X-RAY | mpc-be Summary
kandi X-RAY | mpc-be Summary
Personal MPC-BE git svn clone
Support
Quality
Security
License
Reuse
Top functions reviewed by kandi - BETA
Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of mpc-be
mpc-be Key Features
mpc-be Examples and Code Snippets
Community Discussions
Trending Discussions on mpc-be
QUESTION
I am going through some videos to trim them (extracting parts of the video).
I know there is billions of software out there that can trim videos easily, but I haven't found any that does not recode the result.
My method right now is to open the video in MPC-BE -> play -> pause -> note down the time -> resume to find a place end the clip -> pause -> note down the end time for the clip. Then I take the time codes and use ffmpeg to extract the part. Usually with something like:
...ANSWER
Answered 2020-Dec-31 at 18:31This is my method : With ffplay,
QUESTION
I'm trying to convert a scene from a soft-subbed MKV file into a hard-subbed WEBM file with two-pass. The video encodes fine, but the file shows the wrong length when opened on a media player (it's showing as if I had encoded the original file from the starting point all the way to the end).
This is the command I'm using:
...ANSWER
Answered 2020-Feb-01 at 06:19Apparently, your player doesn't like a non-zero starting timestamp (at least in WebMs).
So, reset the timestamps before writing (I assume you're using copyts for the subtitles filter alignment).
In pass 2,
ffmpeg -y %timestamp% -copyts -i source.mkv -shortest -c:v libvpx-vp9 -pass 2 -b:v 0 -crf 33 -threads 8 -speed 2 -tile-columns 6 -frame-parallel 1 -auto-alt-ref 1 -lag-in-frames 25 -c:a libopus -b:a 64k -sn -vf scale=-1:720,subtitles=source.mkv -output_ts_offset -12:59.069 -f webm out.web
where the value for ts offset is the negative of your ss value.
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install mpc-be
Support
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page