How to decode ogg audio file to raw audio data? [closed] - c++

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a book, tool, software library, tutorial or other off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I have .ogg file and I want to decode it to raw audio data. I read documentation to libvorbis, but it's very brief and not clear. I don't understand it! What Should i use libvorbis or libogg? Or something else?

ogg is file format so using libogg you can demux file and then you will get vorbis audio you need to further decode that using libvorbis. and you will get raw audio.
Samples application for using those library are available on Internet.

Related

Need library to open 3d video c++ [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
i'd be interested in a c++ (if any) library to handle and elaborate 3d video files. I need to process the NifTI and Analyze format.
Thanks
You should use opencv for video processing. It is a very good library for processing video and you can also edit video. It provides a lot of inbuilt functions to process video.
To see an example click here.

FLTK Exif data from an image [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
Is there a fltk class/function that deals with extracting exif data from an image? Is there code or any commands? Ive searched all over the internet, and could find nothing.
No, there is no such class in FLTK, and probably there will never be. Dealing with Exif data should be in another library that deals with image formarts, not a GUI toolkit.
What I would do if I were you is this: Link my FLTK application with Magick++ (http://www.imagemagick.org/Magick++/) and use ImageMagick C++ API to manipulate Exif data.

Is there any c++ library to encode flv video? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
Is there any c++ video library to convert videos to flv video?
I searched on google I found flvdev.com but it's not open source (it needs purchasing).
I also tried libavcodec, but flv codec doesn't work.
(Now I'm fetching frames from a video monitor, then use libavcodec to encode them to mpg and finally call "ffmpeg" command to convert them to flv)
You can try ffmpeg. It seems it supports the flv format:
https://github.com/FFmpeg/FFmpeg
http://www.ffmpeg.org/download.html
Here are some examples of how to use the compiled program, but being open source, you can integrate it into your work:
How can I achieve the best overall FLV quality with FFMPEG?
http://www.thornock.us/wordpress/archives/172

convert hus and pes file to any types of images [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this question
I am trying to convert a massive number of hus and pes files (embroidery files). I was able to do it using ImageMagick in centos but I encountered memory allocation errors and also it only works for pes files. Is there a script that can handle this for both file types?
I tryed in imageMagick with a lot of versions and a lot of files but I wasn't able to do it.
there are a couple of windows software that can do this, but it takes to much time to do it file by file.
Thanks to jpw I found a solution. Embroidermodder confers a conversion to svg that I can convert to png using convert. I had to build it from source but it worked very well.

Is there any C/C++ lib supporting reading/writing TIFF with 32-bit samples? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 9 years ago.
Improve this question
I want to read and write TIFF(32-bit samples) in some Qt projects. I have tried libtiff, but they only support the TIFF images with BitsPerSample=1, 2, 4, 8, or 16.
When I used them to read TIFF with 32-bit samples, I got prompt "Sorry, can not handle images with 32-bit samples."
Is there any C/C++ lib supporting reading/writing TIFF with 32-bit samples?
Why dont you use QImage ?
It has
load() and
save()
operations. Also supports reading writing tiff.
Keep in mind your question is off topic.
But anyway FLTK is able to.
See http://www.fltk.org/index.php