Updated: October 28, 2024 |
Attach an output
#include <mm/renderer.h>
int mmr_output_attach(mmr_context_t *ctxt, const char *url, const char *type)
Attach an output to the context and get its output ID. The ID is a non-negative integer, unique for this context. You must call this function when no input is defined for the context; otherwise, the function fails because mm-renderer currently doesn't allow for output attachments when an input is defined.
An output can be an audio or a video device, a combined audio/video device (e.g., a DSP connected to hardware), or a file. Currently, mm-renderer doesn't allow multiple outputs of the same type.
Valid URLs for the audio output type begin with snd: and contain the path of an audio output device (e.g., speakers). The Playing audio content section gives an example of using such a URL.
Valid URLs for the video and subpicture output types begin with screen: and are optionally followed by a list of parameter settings. For the required syntax, see Playing video content.
For the file output type, the URL must provide the full path of a file that will store the media data. For an example of using this output type to capture audio content, see Recording audio content.
A non-negative output ID on success, -1 on failure (use mmr_error_info())