Plugin for trimming/cutting video!
#1
Is there a video trimming plugin in Kodi?
Like on PS4, for example
Reply
#2
Not that I know of, but using ffmpeg for that should be fairly straight forward to implement.

But, using a terminal also will not take up that much of your time:
cpp:
ffmpeg -y -hide_banner -i inputfile.mkv -ss 00:00:00 -t 00:00:10 -c copy outputfile.mkv
Reply
#3
(2019-08-26, 11:45)Klojum Wrote: Not that I know of, but using ffmpeg for that should be fairly straight forward to implement.

But, using a terminal also will not take up that much of your time:
cpp:
ffmpeg -y -hide_banner -i inputfile.mkv -ss 00:00:00 -t 00:00:10 -c copy outputfile.mkv

I know about about ffmpeg. I want to do this while lying on the couch and with a gamepad in my hands.
Reply
#4
Please test my kodi addon for trimming video:
repository
or
addon

How to use addon:
Reply

Logout Mark Read Team Forum Stats Members Help
Plugin for trimming/cutting video!0