
Recherche avancée
Autres articles (81)
-
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 (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...) -
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 (4532)
-
Compile ffmpeg for WinRT with libvpx ?
7 janvier 2018, par Sean O'NeilFollowing this guide :
https://trac.ffmpeg.org/wiki/CompilationGuide/WinRTCan anyone tell me if it’s possible to build and include libvpx into this ?
-
Revision 106740 : Cf r106739 : ouvelle possibilité du plugin de mutualisation facile (voir ...
11 octobre 2017, par real3t@… — LogCf r106739 : ouvelle possibilité du plugin de mutualisation facile (voir commit suivant) : afficher la valeur d’une meta. Soit :
nommeta
nomcasier/nommeta (beaucoup utilisé avec les CFG)
Déclaration dans le mes_options.php
Exemple :
GLOBALSmutualisation_afficher_config ? = (isset($GLOBALSmutualisation_afficher_config ?) ?$GLOBALSmutualisation_afficher_config ?.’,’ :).’soyezcreateurs/mode_affichage,slogan_site’ ; -
ffmpeg save 8bit 'raw' pixel data from 10bit source
15 décembre 2023, par memekoSo, I'm extracting
I-Frames
from videos with the intention of converting them to perceptual hashes to be used for analysis

I am specifically working with the raw luma channel data in a Y'CBCR colour-space found in
YUV420p
chroma-subsampled video codecs like h.264 / h.265, which works all well and good, except when the input source uses a10bit
colour-depth.

I was wondering if there is a way to make
ffmpeg
convert and output only the extractedY'
component as raw8bit
pixel data even if the source was originally10bit
, like, is there a raw8bit
output encoder or some kind of filter you can apply ?

That is without having to re-encode the whole video, only potentially doing a conversion on the extracted luma component
I-Frame
data, if it happens to not already be8bit
. I am also usingffmpeg
's scale filter to compress the rawY'
channel data before output, so preferably I would want the10bit
to8bit
conversion to be the last step in the pipeline.

I've already tried specifying an
8bit
pixel format with-pix_fmt yuv420p
, this sort of works, but also causes the output to ignore-filter_complex "extractplanes=y"
and also outputUV
planes, which is not what I want.