
Recherche avancée
Autres articles (51)
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (4858)
-
Replace assert with AVERROR when recode_subtitle called w/o ICONV.
20 mai 2014, par Dale CurtisReplace assert with AVERROR when recode_subtitle called w/o ICONV.
recode_subtitle() is called implicitly by avformat_find_stream_info().
As such, clients which disable ICONV always crash if a file contains
subtitles ; even if they don’t care about them.Signed-off-by : Michael Niedermayer <michaelni@gmx.at>
-
FFMpeg HLS output settings required for Approval by the Apple App Store
23 mai 2016, par JungleGeniusI have looked all over, but I have not found a direct answer for my question so far.
What are the minimum required FFMpeg command line output and segmentation settings that will produce a minimum set of all the required HLS .m3u8 and .ts file combinations needed for Approval by the Apple App Store for a Video file played in an App ?
Note there are older Q&As on here that were written before FFMpeg added native segmentation for HLS. So I’m looking for 100% FFMpeg solution to output what Apple is looking for. I don’t care about the input format for this answer as FFMpeg reads most any file we would want to use.
Note the correct answer should take into account the setting for maximum bandwidth requirments for the total stream and etc that Apple looks for.
I bet someone out there has already got this answered, maybe even running in some code but I want to see it posted to save the rest of us some time.
Thanks !
-
lavc/h264dsp : fix R-V V weight_pixels pointer arithmetic
17 novembre 2024, par Rémi Denis-Courmontlavc/h264dsp : fix R-V V weight_pixels pointer arithmetic
As of 459a1512f13ae1fdd404ff9281b02d225ac70a09,
the code is unrolled to process two rows per iteration.
The output cursor thus needs to be incremented by twice the
stride, which is taken care of with SH1ADD. However the original
ADD from the original implemetation was incorrectly left over.