Displaying 3 results from an estimated 3 matches for "ppoutputformatcontext".
Did you mean:
_poutputformatcontext
2019 Jul 11
2
Need help with streaming to Icecast
...61
stream_start Thu, 11 Jul 2019 15:56:46 +0100
stream_start_iso8601 2019-07-11T15:56:46+0100
total_bytes_read 877800
total_bytes_sent 0
user_agent Lavf/58.20.100
*Code:*
int ret;
_pOutputFormatContext = ffmpeg.avformat_alloc_context();
fixed (AVFormatContext** ppOutputFormatContext =
&_pOutputFormatContext)
{
ret =
ffmpeg.avformat_alloc_output_context2(ppOutputFormatContext, null, "webm",
configuration.Destination);
if (ret < 0)
{
return false;
}
}...
2019 Jul 11
1
Need help with streaming to Icecast
...ream to Icecast? I can't find that in
> your
> code below? Do you use the ffmpeg icecast protocol?
>
> >
> > *Code:*
> > int ret;
> > _pOutputFormatContext = ffmpeg.avformat_alloc_context();
> > fixed (AVFormatContext** ppOutputFormatContext =
> > &_pOutputFormatContext)
> > {
> > ret =
> > ffmpeg.avformat_alloc_output_context2(ppOutputFormatContext, null,
> > "webm",
> > configuration.Destination);
> > if (ret < 0)
> >...
2019 Jul 11
0
Need help with streaming to Icecast
...Hi,
how do you actually send the stream to Icecast? I can't find that in
your
code below? Do you use the ffmpeg icecast protocol?
>
> *Code:*
> int ret;
> _pOutputFormatContext = ffmpeg.avformat_alloc_context();
> fixed (AVFormatContext** ppOutputFormatContext =
> &_pOutputFormatContext)
> {
> ret =
> ffmpeg.avformat_alloc_output_context2(ppOutputFormatContext, null,
> "webm",
> configuration.Destination);
> if (ret < 0)
> {
> retu...