Я использую ffmpeg для чтения камеры RTSP. Я получаю эти ошибки:
Nonmatching transport in server reply в c++ и Invalid data found when processing input .
Я могу играть в это в VLC в Windows. Я использую Red Hat 6.9.
Камера имеет настройку "RTP ES".

Код:

source_name = "rtsp://192.168.1.108/WESCAM";

// Open the initial context variables that are needed
format_ctx = avformat_alloc_context();    
codec_ctx = NULL;

// Register everything
av_register_all();
avformat_network_init();

//open RTSP camera or h264 file
if (avformat_open_input(&format_ctx, source_name, NULL, NULL) != 0) 
{
    return EXIT_FAILURE;
}

1 ответ1

0
source_name = "rtsp://192.168.1.108/WESCAM";

Некоторые проблемы с форматированием моего поста вот код

// Open the initial context variables that are needed

format_ctx = avformat_alloc_context();    
codec_ctx = NULL;

// Register everything

av_register_all();

avformat_network_init();


//open RTSP camera or h264 file

if (avformat_open_input(&format_ctx, source_name, NULL, NULL) != 0) 
{
    return EXIT_FAILURE;
}

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .