
Recherche avancée
Autres articles (31)
-
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ; -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
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 (...)
Sur d’autres sites (5851)
-
avformat/hdsenc : Add explicit deinit function
23 octobre 2019, par Andreas Rheinhardtavformat/hdsenc : Add explicit deinit function
hdsenc already had an explicit function to free all allocations in case
of an error, but it was not marked as deinit function, so that it was
not called automatically when the AVFormatContext for muxing gets freed.Using an explicit deinit function also makes the code cleaner by
allowing to return immediately without "goto fail".Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-
Making screenshots in FFmpeg : How to deal with differing actual width vs displayed width ? [duplicate]
15 mars 2020, par browncatmegazordI usually have no problem making gifs and screenshots from a video with FFmpeg using standard commands like so :
ffmpeg -i input -frames:v 1 -q:v 2 output.jpeg
Recently I had to deal with an .mkv file that had a pixel width of 720, but a "display width" of 853 (Apparently this non-square pixel stuff is a thing), and my usual commands would give me a 720x480 screenshot that is oddly squashed.
I managed to force its size by adding a -s 853x480 into the above command, but it looks a little bit stretched, and I suspect there’s a cleaner way to do this without me having to manually check what the displayed width is.
Would appreciate some insight about this !
-
avformat/nutenc : Do not pass NULL to memcmp() in get_needed_flags()
1er novembre 2019, par Michael Niedermayeravformat/nutenc : Do not pass NULL to memcmp() in get_needed_flags()
This compared to the other suggestions is cleaner and easier to understand
keeping the condition in the if() simple.This affects alot of fate tests.
See : [FFmpeg-devel] [PATCH 05/11] avformat/nutenc : Don't pass NULL to memcmp
See : [FFmpeg-devel] [PATCH]lavf/nutenc : Do not call memcmp() with NULL argumentFixes : Ticket 7980
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>