
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (59)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)
Sur d’autres sites (8388)
-
HLS : reading PRIV ID3 tag with com.apple.streaming.transportStreamTimestamp PTS time mark
30 novembre 2018, par michaI have a hls live stream where i can go back 30 minutes (timeshift) :
I want to save a part of the 30 minutes window as mp4 file locally.
I parsed the playlist, downloaded the single ts and aac segments and have put them together (concatinate). The result is always asynchronous.
There is a timestamp in the ts segments but not in the aac segments.
The timestamps of the aac segment are probably in a private id3 tag, but i don’t know how i can read them.Here is a good analysis :
https://github.com/flavioribeiro/nginx-audio-track-for-hls-module/issues/22Does anyone have an idea how i can read that timestamp (OS : Linux) ?
-
avformat:matroskadec : use a define to mark the EBML length is unknown
23 février 2019, par Steve Lhommeavformat:matroskadec : use a define to mark the EBML length is unknown
Unifying the way the EBML unknown length is signaled, rather than using two
incompatible values. UINT64_MAX cannot be read as a valid EBML length with the
current code.Co-authored-by : Steve Lhomme <robux4@ycbcr.xyz>
Co-authored-by : Dale Curtis <dalecurtis@chromium.org>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
avcodec/nvdec : Explicitly mark codecs that support 444 output formats
7 octobre 2018, par Philip Langdaleavcodec/nvdec : Explicitly mark codecs that support 444 output formats
With the introduction of HEVC 444 support, we technically have two
codecs that can handle 444 - HEVC and MJPEG. In the case of MJPEG,
it can decode, but can only output one of the semi-planar formats.That means we need additional logic to decide whether to use a
444 output format or not.