View Single Post
Copernicus's Avatar
Posts: 1,986 | Thanked: 7,698 times | Joined on Dec 2010 @ Dayton, Ohio
#196
Originally Posted by capitannemo View Post
Perhaps it might help with the "nokiaaaccenc" parameters understanding
Thank you! I had actually browsed that thread before to get an idea of the syntax needed to access GStreamer from C++, but I hadn't really considered examining the nokiaaacenc parameters they use. It does have an interesting item:

Code:
encoder = gst_element_factory_make("nokiaaacenc", NULL);
if (!encoder) {
fprintf(stderr, "err: create encoder nokiaaacenc failed\n");
return 1;
}
bitrate = 128000;
width = 16;
depth = 16;
rate = 48000;
channels = 1;
So, in theory, there are also "width", "depth", "rate", and "channels" parameters that can be set. Sadly, I still have no clue what the limits for these would be (if they are even valid to start with), but I can at least make them available to Orecchiette users. I'll put them on the list.
 

The Following 3 Users Say Thank You to Copernicus For This Useful Post: