
Recherche avancée
Médias (3)
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
Autres articles (22)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...)
Sur d’autres sites (4871)
-
Revision 90346 : on peut demander maintenant depuis le tableau que le fieldset soit encadré ...
19 juin 2015, par toutati@… — Logon peut demander maintenant depuis le tableau que le fieldset soit encadré d’un div au lieu du ul quand SPIP < ;3.1
-
Evolution #4366 : Ajouter systématiquement un attribut id sur les intertitres
7 août 2019, par tcharlss (*´_ゝ`)Il y a aussi sommaire automatique.
Je ne sais pas lequel des deux est activé sur contrib, mais il y a une différence notable : les liens font remonter au sommaire, au lieu d’envoyer vers les intertitres eux-mêmes.Et on ne veut pas forcément avoir un sommaire, c’est une fonctionnalité à part.
Donc activer un de ces plugins ne répond pas au problème.Mais oui, il y a du code à récupérer pour la génération des ids, etc.
-
Detect frame with incorrect poc
3 août 2018, par Анзор ГерговWhen I try to decode packet (using this function avcodec_decode_video2) sometimes I get corrupt (gray) frame. This error is obtained because of the missed frames. ffmpeg shoes the following errors to the log :
[hevc @ 000000000379b680] Could not find ref with POC 43 [hevc @
000000000379b1c0] Duplicate POC in a sequence : 17. [hevc @
000000000379b1c0] Error parsing NAL unit #0.I wanted to solve this problem by strictly adjusting the context of the decoder using the following flags : AV_EF_EXPLODE and AV_EF_AGGRESSIVE. Unfortunatly it didn’t help, errors continue appear in log, but avcodec_decode_video2 gives away corrupt frame.
AVCodecContext* context = avcodec_alloc_context3(codecId);
avctx->flags2 |= AV_CODEC_FLAG2_FAST;
// Known encoder's bugs handling.
avctx->workaround_bugs = AV_EF_EXPLODE | AV_EF_AGGRESSIVE;
avctx->err_recognition = 0;
avctx->error_concealment = 0;
// Threads.
avctx->thread_count = 4;
avctx->thread_type = FF_THREAD_FRAME;
.....
avcodec_decode_video2(avctx, picture, got_picture_ptr, avpkt);
....What do I need to do to ensure that corrupted frames are not repeated ? Maybe I need to configure the context a little differently ?
P.S. you can see ffmpeg version in attachment