javacv icon indicating copy to clipboard operation
javacv copied to clipboard

Java interface to OpenCV, FFmpeg, and more

Results 235 javacv issues
Sort by recently updated
recently updated
newest added

I tried this for record sample data ``` PipedOutputStream pos=new PipedOutputStream(); FFMpegFrameRecorder recorder=new FFmpegFrameRecorder(pos,channels); PipedInputStream pis=new PipedInputStream(pos,640000); ...setRecorder... recorder.start(); ....get frame from somewhere... while((frame!=null){ recorder.record(frame); while(pis.avaliable()>0){ pis.read(new byte[2048]); } frame.close();...

help wanted
question

I initialize a spring boot project with spring initializer, it works fine; Then I add javacv dependency to it, it failed with the following message. But the above code javacv...

help wanted
question

I want to change the video cover by JavaCV , but I have no idea.

help wanted
question

I use the FFmpegFrameGrabber.grabImage() functions. The program always runs for a period of time, and there will be got JVM CRASH Exception: try (FFmpegFrameGrabber frameGrabber = FFmpegFrameGrabber.createDefault(streamUrl)) { if (StringUtils.startsWithIgnoreCase(streamUrl,...

help wanted
question

I want to merge a video with several audio files, but get this error:org.bytedeco.javacv.FFmpegFrameFilter$Exception: avfilter_graph_config() error -22。 My filter is "[0:a]adelay=0|0[a0];[1:a]adelay=3000|3000[a1];[2:a]adelay=10000|10000[a2];[a0][a1][a2]amix=inputs=3[a]". Another error is the sample rate of video grabber...

help wanted
question

Can I change the start of audio? ![image](https://user-images.githubusercontent.com/42272971/155091333-a738c695-e451-48e1-84b3-9e40bff3a9e6.png)

help wanted
question

Hi! I'm using Android API to record audio and video and then muxing them. But i don't want to use the Android MediaMuxer API to mux the incoming bytebuffers. Could...

enhancement
help wanted
question

java 11 macos 10.14.6 ``` Warning: Could not load Loader: java.lang.UnsatisfiedLinkError: no jnijavacpp in java.library.path: [/Users/jkolobok/Library/Java/Extensions, /Library/Java/Extensions, /Network/Library/Java/Extensions, /System/Library/Java/Extensions, /usr/lib/java, .] Exception in thread "main" java.lang.UnsatisfiedLinkError: no jniopenblas_nolapack in java.library.path:...

enhancement
help wanted
question

```java private static final String filename2 = "H:\\inout.mp4"; private static final String filename3 = "H:\\output.mov"; public static void main(String[] args) { FFmpegFrameGrabber grabber = new FFmpegFrameGrabber(filename2); grabber.start(); FFmpegFrameRecorder recorder =...

help wanted
question

Here is an example code: ``` @Composable fun App() { val videoUrl by remember { mutableStateOf("") } var imageBitmap by remember { mutableStateOf(null) } LaunchedEffect(Unit) { val pFormatContext = avformat_alloc_context()...

help wanted
question