Questions tagged [xuggler]

Xuggler provides an easy, open source way to uncompress, modify, and re-compress any media file (or stream) which is supported in FFMPEG from Java.

281 questions
16
votes
3 answers

How to encode images into a video file in Java through programming?

I am trying to encode some images of same resolution into a video file using, For that I have tried: jCodec jcodec..example description But it is very time consuming and not a proper tool to encode large number of images and it creates a quick time…
ANUJ SINGH
  • 897
  • 1
  • 18
  • 38
13
votes
2 answers

Android , Java - Rendering a video using bitmap frames to reverse a video (Xuggler)

I am having no of video frames in ArrayList. I have accessed this frames using MediaMetadataRetriever.getFrameAtTime() method over a Video file(.mp4). i reverse the order of frames in ArrayList. Now using this reverse ordered frame queue i…
Chaitanya Chandurkar
  • 2,120
  • 3
  • 23
  • 41
12
votes
1 answer

How to encode media file in RTP packets with Xuggler

I am building an RTSP streaming server in java using xuggler, but I'm not sure how to implement correct RTP packetization. My current approach is to call ReadNextPacket(packet) on the input container, then craft an RTP packet with the payload filled…
sox with Monica
  • 371
  • 5
  • 19
12
votes
2 answers

Xuggler encoding and muxing

I'm trying to use Xuggler (which I believe uses ffmpeg under the hood) to do the following: Accept a raw MPJPEG video bitstream (from a small TTL serial camera) and encode/transcode it to h.264; and Accept a raw audio bitsream (from a microphone)…
IAmYourFaja
  • 50,141
  • 159
  • 435
  • 728
11
votes
2 answers

Adding xuggler dependency gives error

I want to generate single thumbnail image from video so I'm using xuggler. I tried to add its dependency and repository. xuggle repo
User14141111
  • 335
  • 2
  • 16
11
votes
3 answers

Display two videos together then output as a merged video on a single screen

This question may sound a little bit complex or ambiguous, but I'll try to make it as clear as I can. I have done lots of Googling and spent lots of time but didn't find anything relevant for windows. I want to play two videos on a single screen.…
Anil
  • 209
  • 3
  • 10
10
votes
6 answers

XUGGLE ERROR: Exception in thread "main" java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory

I am trying to execute the following code: import com.xuggle.mediatool.IMediaReader; import com.xuggle.mediatool.IMediaWriter; import com.xuggle.mediatool.ToolFactory; public class vidcon { /** * @param args */ public static void…
1321941
  • 1,999
  • 5
  • 23
  • 46
10
votes
1 answer

Where can I find xuggler simple tutorials?

I'm making a simple messaging application for a webpage in my country. I tried to learn JMF but in my opinion it's too old and I just don't want to use it. I searched stackoverflow and it seems that xuggler is a better way to manage media. can…
jose gabriel
  • 723
  • 2
  • 8
  • 21
9
votes
1 answer

How to get Audio for encoding using Xuggler

I'm writing an application that records the screen and audio. While the screen recording works perfectly, I'm having difficulty in getting the raw audio using the JDK libraries. Here's the code: try { // Now, we're going to loop …
wrahool
  • 1,017
  • 3
  • 16
  • 37
9
votes
3 answers

How do you install the latest version of Xuggler (5.4, as of 18/05/2013) in eclipse?

I have literally no clue where to start doing this. I've downloaded the necessary Jar's from the site, and done some research on how to install Xuggler in Eclipse, and everything is outdated or irrelevant. My system is a 64-Bit Windows 8. Most…
Evared
  • 93
  • 1
  • 1
  • 7
7
votes
1 answer

What's a good alternative to Xuggler as its development has haulted?

Xuggler has been discontinued and the maven repository no longer exists. Is there a good alternative out there for video encoding/decoding? Or will Xuggler suffice even though it has stopped being maintained?
Jake Miller
  • 2,034
  • 1
  • 17
  • 38
7
votes
2 answers

Xuggler Repository Link Broken

In my JAVA application, i am using Xuggler for ScreenCapture and other functionality. Now its a maven project so i put Xuggler as dependency in Pom.xml as told in this Link. Now few days ago i cleaned my system, so when i again imported my project,…
Saikat Dey
  • 83
  • 7
7
votes
1 answer

How can I build the GPL and LGPL version of Xuggle Xuggler?

Are there specific steps I can take to build the Xuggle Xuggler source code from Windows 32-bit, Windows 64-bit, Linux 32-bit, and Linux 64-bit? I've tried multiple times on multiple systems and keep getting lots of different errors. Update I spent…
11101101b
  • 7,351
  • 2
  • 37
  • 52
6
votes
2 answers

Failed to write core dump. minidumps are not enabled by default on client version of windows

I have this Java class I am trying to run using Eclipse Mars.1 IDE. Here's the code : import com.xuggle.mediatool.IMediaReader; import com.xuggle.mediatool.IMediaWriter; import com.xuggle.mediatool.ToolFactory; import com.xuggle.xuggler.ICodec;…
seman
  • 127
  • 1
  • 5
  • 11
6
votes
1 answer

Append video files of different width, height

I am building an application where user can record a screencast. Integral part of application is that, one can pause recording and resume it later any time (the session is maintained on server side). So say when user starts recording the screen, the…
Jatin
  • 28,098
  • 11
  • 88
  • 150
1
2 3
18 19