ошибка ffmpeg rtsp: несоответствие транспорта в ответе сервера

Я использую ffmpeg читать РЦП камеры. Я получаю эти ошибки:

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;
}
23
задан testeaxeax
21.05.2023 7:59 Количество просмотров материала 3002
Распечатать страницу

1 ответ

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;
}
0
отвечен Douglas 2023-05-22 15:47

Постоянная ссылка на данную страницу: [ Скопировать ссылку | Сгенерировать QR-код ]

Ваш ответ

Опубликуйте как Гость или авторизуйтесь

Имя
Вверх