Video Processing Library for Java

前端 未结 4 2089
面向向阳花
面向向阳花 2021-02-03 13:54

I want to extract frames from a video and apply some filters on it such as gabor/hough etc. Which Java library would be perfect for handling all kinds of video encodings? I have

4条回答
  •  伪装坚强ぢ
    2021-02-03 14:34

    If you're looking to do low level operations such as extracting frames and manipulating them, then Xuggler would be the best choice, because the APIs are geared around this low level. It works on ffmpeg so can handle all types of video encodings.

    Don't use JMF for anything, it's old, outdated and buggy - GStreamer is good, but the API lends itself more to playing videos rather than manipulating the frames.

提交回复
热议问题