
Recherche avancée
Autres articles (63)
-
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (6224)
-
GOP structure via FFmpeg
17 juillet 2021, par chronosynclasticI have two questions regarding the Group-of-Pictures (GOP) in MPEG4 Video (both for MPEG4 Part2 and H.264) :



- 

-
How can I extract the GOP structure and size of a video sequence using FFmpeg ? I know that the
av_get_picture_type_char
function of theAVPicture
struct yields picture types for each frame, but I wonder if there is a more direct method to obtain the GOP information ? -
How can I detect whether the sequence has open GOPs or closed GOPs, i.e. whether B frames from one GOP are allowed to refer to the I and P frames in an adjacent GOP ?






-
-
GOP structure via FFmpeg
25 septembre 2015, par SerhanI have two questions regarding the Group-of-Pictures (GOP) in MPEG4 Video (both for MPEG4 Part2 and H.264) :
-
How can I extract the GOP structure and size of a video sequence using FFmpeg ? I know that the
av_get_picture_type_char
function of theAVPicture
struct yields picture types for each frame, but I wonder if there is a more direct method to obtain the GOP information ? -
How can I detect whether the sequence has open GOPs or closed GOPs, i.e. whether B frames from one GOP are allowed to refer to the I and P frames in an adjacent GOP ?
-
-
FFMPeg H264 decoder and GOP Frames
19 juillet 2017, par Andrea BonventoI used ffmeg library in linux to decode H264 from remote RTSP server, using live555, its all ok, decoding process produce correct AVFrame structures filled with so called H264 GOP.
Every produced AVFrame may contain a I-Frame or P-Frame or B-Frame
But I need to obtain uncompressed sequence of pictures (bitmaps maybe ?) and take only relative I-Frames from any GOP is not a solution... some RTSP servers send big GOP.
I have to show videos to RGB leds billboards with proprietary protocol.
A have no idea how to do that with ffmpeg (libavcodec)thanks