
Recherche avancée
Autres articles (82)
-
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 -
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 (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (10147)
-
Revision 6ae58931d6 : Fix decoder resolution change with tiles There was a bug with the decoder that
7 avril 2014, par Frank GalliganChanged Paths :
Modify /test/test-data.sha1
Modify /test/test.mk
Modify /test/test_vectors.cc
Modify /test/vp9_thread_test.cc
Modify /vp9/decoder/vp9_decodeframe.c
Modify /vp9/decoder/vp9_dthread.c
Fix decoder resolution change with tilesThere was a bug with the decoder that if you started the decoder
with more threads than the first frame had tile columns. Afterwards
tried to decode a frame with more tile columns than the first frame,
the decoder would hang. E.g. run vpxdec —threads=4. The first frame
had two tile columns, then the next key frame had 4 tile columns, the
decoder would hang. If you started with 4 tiles and switched to 2
tiles the decoder would be fine. The issue is that the worker the thread
loop is using is stale.I added a test vector "vp90-2-14-resize-848x480-1280x720.webm" that
exhibited the bug.Change-Id : I7bdd47241a52ac0fe1c693a609bc779257e94229
-
avcodec/ffv1enc : Allow less than 2 rows of slices for low vertical resolution
26 juin 2017, par Michael Niedermayer -
Change video resolution ffmpeg
25 janvier 2023, par liorkoI have videos with different resolution. I want that all of them will be in resolution of 480x320. I tried the command :



ffmpeg -i %s_ann.mp4 -vf scale=480x320,setsar=1:1 %s_annShrink.mp4' %(dstfile,dstfile)




but the output of the videos are files with the size of 0 kb.



What I'm doing wrong ?