JAVE is a library for Java that wraps around FFMPEG to manipulate audio and video.
Questions tagged [jave]
16 questions
2
votes
0 answers
Conditional query getting crash in android
I am using room database in android studio when run query like Select * from table_name it is working but if I apply some conditions like WHERE then false response.
The same conditional query run on DB Browser for SQLite then it is working…

Rohit Barge
- 35
- 7
2
votes
1 answer
How convert .webm to .mp4 using Java?
I would like to convert a video from .webm to .mp4. I have tried with Java library JAVE (Java Audio Video Encoder). This is my code using Jave:
File source = new File("C:\\Development\\workspace\\java-project\\video.webm");
File target = new…

Andrea Pacchioni
- 21
- 2
- 4
1
vote
1 answer
Make Search Box closes if user clicks anywhere?
Currently, the search box opens and closes on clicking the font awesome search icon. But I want the search box closed when the user clicks anywhere inside the body...
My Code:
button.search-open {
position: absolute;
z-index: 999;
…

El3magic
- 53
- 4
1
vote
1 answer
How can I convert a mp4 file to webm using java only?
I am trying to convert a file from mp4 to webm. I am trying to use the JAVE wrapper of FFmpeg. I am getting the error.
Here is my code:
private String ConvertVideo(URL url) {
File target =null;
MultimediaObject multimediaObject = new…

mir-shakir
- 41
- 5
1
vote
0 answers
Is there any option to create a single frame thumbnail for a video in java?
Is there any option to create a single frame thumbnail for a video in java with java libraries.
I am using Jave2 in my application. Does Jave2 provides any such options? I didn't find a single documentation related to this.
I heard Xuggler provides…

Prashanth Shyamprasad
- 827
- 2
- 17
- 39
1
vote
0 answers
JAVE Library for Mac
I'm actually trying to launch my Unix code on my Mac.
I know that I have to build ffmpeg on my Mac.
I used a Github script for that :
Script
My code :
package test1;
import it.sauronsoftware.jave.*;
import test1.MyFFMPEGExecutableLocator;
import…

Maxime Rouze
- 13
- 3
1
vote
1 answer
Video Conversion - Java Audio Video Encoder (JAVE)
I am Working on MAC OS X.
I am Trying to Encode videos from one format to another Using jave ( java audio video converter) . But i keep getting this exception
it.sauronsoftware.jave.EncoderException: Stream #0.0, 25.00 fps(r): Video: mpeg4,…

Venkatesh
- 79
- 1
- 1
- 10
0
votes
0 answers
Convert WAW to MP3, how to set FFMPEG executable path for JAVE library?
I am using the ws.schild.jave library in my Java project to encode audio files, and I am having trouble setting the FFMPEG executable path. By default, the library searches for the FFMPEG executable in the temporary folder of the system, but I need…

Luigi105
- 141
- 1
- 11
0
votes
0 answers
ws:schild Exit code of ffmpeg encoding run is 137
Local windows can be used, but it cannot be used when deployed to linux. Linux is a centos system, x86 architecture, 64-bit, and windows uses an intel i5 processor
2022-10-25 23:40:05.296 ERROR 14124 --- [nio-9979-exec-3] ws.schild.jave.Encoder …
0
votes
0 answers
Date converted to timestamp in response
I have entity and entityDto,
entity containing a field of type Date when persisting it to dataBase I use
@CreationTimestamp and @Temporal(TemporalType.TIMESTAMP) annotations,
dto contains the same field of type Date the project was working well and…

Muathe Jamil
- 11
- 1
0
votes
1 answer
how to include jars in a jar which is not a maven project into a maven project
I create a Maven project , and import a jar which has no pom.xml file but has lib directory .
the problem is the imported jar can't be used for jars in the lib directory cannot be finded.
The Questions is how to inclued the lib directory into the…

Kee
- 1
- 1
0
votes
2 answers
Maven cannot find JAR
Recently I tried to develop an interface for my group. My service runs and works well on my local machine, but when trying to use Maven Compile in IDEA, the compilation fails and tells me it cannot find my JAR package. The JAR package I use is JAVE…

SwaggyP
- 37
- 1
- 7
0
votes
1 answer
Converting an MP3 to a video format using JAVE
I am trying to convert a audio (mp3) file to a video file (ideally flv or anything that youtube will accept). Looking around on here I thought that JAVE might be able to do the job and have been playing around with it but most of the support is…

Thomas Norton
- 1
- 1
0
votes
1 answer
JAVE (Java Audio Video Encoder) library exception only on Linux (CentOS 7)
I'm using JAVE (Java Audio Video Encoder) library and the developed application is on windows.
On windows the conversion of an .mp3 file is working fine but when I deployed on linux (CentOS 7) an exception is thrown.
As I understand JAVE has also a…

Radu Linu
- 1,143
- 13
- 29
0
votes
1 answer
Importing JAVE in Blue J
Whenever I try and import a lib into blue j, in this case JAVE in order to convert WAV files into MP3, the library never seems to import properly, and I get error messages such as "package it.sauronsoftware does not exist" and "cannot find class". I…

O. O'Flaherty
- 1
- 1