Hallo zusammen,
ich bin recht verzweifelt, denn nach einer langen Jury der Entwicklung kann ich meine erzeugten *.h264 Videos die mir vom MMAL Decoder geliefert werden
nicht über meinen Server streamen ogg usw funktiniert, die browser unterstützen das Format im Html5 Video Tag nicht.
Versuche eine kompatiblen Stream zu erzeugen schlugen fehl !
Code
///Set format of video encoder output port
MMAL_ES_FORMAT_T *format_out = m_encoder->output[0]->format;
format_out->type = MMAL_ES_TYPE_VIDEO;
format_out->encoding = MMAL_ENCODING_H263;
format_out->es->video.width = Width;
format_out->es->video.height = Height;
format_out->es->video.frame_rate.num = CAMFPS;
format_out->es->video.frame_rate.den = 1;
format_out->bitrate = 98000000; //35–45 Mbit/s 53–68 Mbit/s
if (mmal_port_format_commit(m_encoder->output[0]) != MMAL_SUCCESS)
return false
Display More
Kennt jemand eine Möglichkeit ein h246 in einem mp4 einzubetten ? Oder hat jemand eine Lösung gefunden ?
Hier eine Versuchsserie :
External Content
www.twitch.tv
Content embedded from external sources will not be displayed without your consent.
Through the activation of external content, you agree that personal data may be transferred to third party platforms. We have provided more information on this in our privacy policy.
Vielen Dank für Hinweise
Karsten aus Berlin