Displaying 3 results from an estimated 3 matches for "pinputvideostream".
2019 Jul 11
2
Need help with streaming to Icecast
...configuration.Destination);
if (ret < 0)
{
return false;
}
}
// Configure output video stream
_pOutputStream =
ffmpeg.avformat_new_stream(_pOutputFormatContext, null);
AVStream* pInputVideoStream = null;
for (var i = 0; i < _pInputFormatContext->nb_streams; i++)
{
if (_pInputFormatContext->streams[i]->codec->codec_type ==
AVMediaType.AVMEDIA_TYPE_VIDEO)
{
pInputVideoStream = _pInputFormatContext->...
2019 Jul 11
1
Need help with streaming to Icecast
...return false;
> > }
> > }
> >
> > // Configure output video stream
> > _pOutputStream =
> > ffmpeg.avformat_new_stream(_pOutputFormatContext, null);
> >
> > AVStream* pInputVideoStream = null;
> >
> > for (var i = 0; i < _pInputFormatContext->nb_streams; i++)
> > {
> > if
> > (_pInputFormatContext->streams[i]->codec->codec_type ==
> > AVMediaType.AVMEDIA_TYPE_VIDEO)
> >...
2019 Jul 11
0
Need help with streaming to Icecast
...(ret < 0)
> {
> return false;
> }
> }
>
> // Configure output video stream
> _pOutputStream =
> ffmpeg.avformat_new_stream(_pOutputFormatContext, null);
>
> AVStream* pInputVideoStream = null;
>
> for (var i = 0; i < _pInputFormatContext->nb_streams; i++)
> {
> if
> (_pInputFormatContext->streams[i]->codec->codec_type ==
> AVMediaType.AVMEDIA_TYPE_VIDEO)
> {
> pInpu...