
Recherche avancée
Autres articles (85)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (11076)
-
arm : vp9mc : Calculate less unused data in the 4 pixel wide horizontal filter
17 décembre 2016, par Martin Storsjöarm : vp9mc : Calculate less unused data in the 4 pixel wide horizontal filter
Before : Cortex A7 A8 A9 A53
vp9_put_8tap_smooth_4h_neon : 378.1 273.2 340.7 229.5
After :
vp9_put_8tap_smooth_4h_neon : 352.1 222.2 290.5 229.5This is cherrypicked from libav commit
fea92a4b57d1c328b1de226a5f213a629ee63754.Signed-off-by : Martin Storsjö <martin@martin.st>
-
avcodec/videotoolbox : add support for 10bit pixel format
13 avril 2019, par fumoboy007avcodec/videotoolbox : add support for 10bit pixel format
this patch was originally posted on issue #7704 and was slightly
adjusted to check for the availability of the pixel format. -
FFmpeg change pixel format to grayscale
2 juillet 2019, par newtI have one input video file.
After doingffprobe input.mp4
I get the following :
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'input.mp4':
Metadata:
major_brand : mp42
minor_version : 0
compatible_brands: mp42mp41
creation_time : 2018-01-20T03:43:28.000000Z
Duration: 00:08:55.62, start: 0.000000, bitrate: 3781 kb/s
Stream #0:0(eng): Video: h264 (Main) (avc1 / 0x31637661), yuv420p(tv, bt709), 1920x1080, 3588 kb/s, 29.97 fps, 29.97 tbr, 30k tbn, 59.94 tbc (default)
Metadata:
creation_time : 2018-01-20T03:43:28.000000Z
handler_name : Alias Data Handler
encoder : AVC Coding
Stream #0:1(eng): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 189 kb/s (default)
Metadata:
creation_time : 2018-01-20T03:43:28.000000Z
handler_name : Alias Data HandlerI am trying to change video pixel format to 8-bit single channel grayscale with the following command :
ffmpeg -i input.mp4 -pix_fmt gray output.mp4
Then I am checking
ffprobe output.mp4
And get
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'output.mp4':
Metadata:
major_brand : isom
minor_version : 512
compatible_brands: isomiso2avc1mp41
encoder : Lavf57.79.100
Duration: 00:08:55.60, start: 0.000000, bitrate: 5589 kb/s
Stream #0:0(eng): Video: h264 (High 4:4:4 Predictive) (avc1 / 0x31637661), yuvj444p(pc), 1920x1080, 5578 kb/s, 29.97 fps, 29.97 tbr, 30k tbn, 59.94 tbc (default)
Metadata:
handler_name : VideoHandler
Stream #0:1(eng): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 2 kb/s (default)
Metadata:
handler_name : SoundHandlerSo, as I can see, pixel format didn’t change to 8-bit single channel grayscale.
How to do this ?