Как установить -profile main в ffmpeg при потоковой передаче?

Как установить -profile main в ffmpeg при потоковой передаче?

Я пытаюсь транслировать свой рабочий стол на сервер ffsever с помощью ffmpeg и обнаружил, что браузер не воспроизводит видео H.264 (High profile), только основные и нижние видео, поэтому я добавил

-c:v libx264 -profile:v high -level:v 4.0

к моему CLI биту я получаю ошибку

Undefined constant or missing '(' in 'high'

вот мой CLI

ffmpeg -probesize 1000M -framerate 60 -video_size 1680x1050 -f x11grab -i :0.0 -f alsa -i default -c:a aac -c:v libx264 -profile:v high http://localhost:8090/feed1.ffm

и вот весь журнал

Press [q] to stop, [?] for help
[x11grab @ 0x55b5676c39e0] Thread message queue blocking; consider raising the thread_queue_size option (current value: 8)
[mpeg1video @ 0x55b567710920] [Eval @ 0x7ffe6c87d5d0] Undefined constant or missing '(' in 'high'
[mpeg1video @ 0x55b567710920] Unable to parse option value "high"
[mpeg1video @ 0x55b567710920] Error setting option profile to value high.
Error initializing output stream 0:1 -- Error while opening encoder for output stream #0:1 - maybe incorrect parameters such as bit_rate, rate, width or height
[aac @ 0x55b56771d3e0] Qavg: -nan
[alsa @ 0x55b5676ccc00] Thread message queue blocking; consider raising the thread_queue_size option (current value: 8)
Conversion failed!

РЕДАКТИРОВАТЬ: Итак, вот мой CLI

./ffmpeg -probesize 1000M -framerate 60 -video_size 1680x1050 -f x11grab -i :0.0 -f alsa -i default -c:a aac -c:v libx264 http://localhost:8090/feed1.ffm

А вот и мойffserver.conf

<Stream h264>
Format webm
Feed feed1.ffm
VideoCodec libx264
VideoFrameRate 24
VideoBitRate 100
VideoSize 480x272
#AVPresetVideo default
#AVPresetVideo baseline
AVOptionVideo profile main
PixelFormat yuv420p
#
AudioCodec aac
AudioBitRate 32
AudioChannels 2
AudioSampleRate 22050
AVOptionAudio flags +global_header
</Stream>

и такая настройка не отображает видео в браузере

решение1

Вы кодируете с помощью mpeg1video, а не libx264.

mpeg1video не поддерживает -profile:v high.

Я предполагаю -c:v, что и все другие параметры вывода игнорируются для вывода FFM, а кодировщик определяется в VideoCodec. ffserver.conf(Но я был ленив и не проверял, и у меня нет опыта работы с ffserver.) Если у вас ничего не VideoCodecустановлено, то, скорее всего, будет выбран кодировщик по умолчанию, определяемый выбранным Formatв ffserver.conf.

В ваш <Stream>раздел добавьте:

VideoCodec libx264
AudioCodec aac
AVOptionVideo profile main
PixelFormat yuv420p

Связанный контент