bytedeco / javacv

Java interface to OpenCV, FFmpeg, and more
Other
7.53k stars 1.58k forks source link

ffmpeg, javacv #1881

Open snipingmovie opened 2 years ago

snipingmovie commented 2 years ago

What can I do to stream an audio file over the network?

saudet commented 2 years ago

The easiest thing we can do is use the ffmpeg program like this: http://bytedeco.org/javacpp-presets/ffmpeg/apidocs/org/bytedeco/ffmpeg/ffmpeg.html To do streaming like that: https://trac.ffmpeg.org/wiki/StreamingGuide

snipingmovie commented 2 years ago

I can do that part but when I need to combine it with a Java program with using ffmpeg grabber and recorder, what path should I follow?