-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Video Decoder using external ffmpeg process #116
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good except for the missing audio. Is the idea that this will replace the other video decoder? The changes to the thumbnail exporter are a bugfix that can be pushed directly to dev, no?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think there is still some work to do here.
Let me know @lucaro if you need support with this. I can try to come-up with some of the changes.
vitrivr-engine-index/src/main/kotlin/org/vitrivr/engine/index/decode/FFmpegVideoDecoder.kt
Outdated
Show resolved
Hide resolved
vitrivr-engine-index/src/main/kotlin/org/vitrivr/engine/index/decode/FFmpegVideoDecoder.kt
Outdated
Show resolved
Hide resolved
vitrivr-engine-index/src/main/kotlin/org/vitrivr/engine/index/decode/FFmpegVideoDecoder.kt
Outdated
Show resolved
Hide resolved
…has been finalised.
…types (e.g., thumbnail and audio clip).
Adds a video
Decoder
based on Jaffree that uses an external ffmpeg process. Since the ffmpeg process is started anew for eachSource
, this can prevent problems such as the accumulation of memory during longer extractions. The current implementation only supports video decoding, audio streams are currently ignored.