
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (102)
-
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
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. -
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)
Sur d’autres sites (8930)
-
lavu/random_seed : use arc4random() when available
7 décembre 2015, par Ganesh Ajjanagaddelavu/random_seed : use arc4random() when available
arc4random() was designed as a superior interface for system random
number generation, designed for OpenBSD and subsequently incorporated by
other BSD’s, Mac OS X, and some non-standard libc’s. It is thus an improvement to
use it whenever available.As a side note, this may or may not get included in glibc, and there is
a proposal to create a posix_random family based on these ideas :
http://austingroupbugs.net/view.php?id=859.Tested on Mac OS X.
Signed-off-by : Ganesh Ajjanagadde <gajjanagadde@gmail.com>
-
Glitchy mp4 File saved with Matplotlib Animation via ffmpeg
9 janvier 2024, par Jacob IvanovI am attempting to save an
.mp4
file usingmatplotlib.animation
to output some simulation results. The relevent section is as follows :

ANI = FuncAnimation(fig, update, init_func = lambda : None, frames = range(0, 21300, 50))
ANI.save("[removed]/anim/v6 256 unforced 0.02.mp4", dpi = 600, fps = 30, writer = 'ffmpeg')



However, it appears that there is some issue in the produced
.mp4
file, as when I use macOS Quicktime to view the file, it pauses on certain frames, and restarts later on. It appears to consistently pause on the same frame a few seconds in. In order to check if Quicktime was the problem, I opened some random.mp4
files I found in a family group chat, and did not have this issue.

I also tried viewing this
.mp4
file with VLC, which had no issue, and played without any glitches. The Slack media viewer built into the app pauses similar to Quicktime.

The following are all relevant versions :


- 

- macOS : 14.2.1 (23C71)
- Python : 3.10.9 via Homebrew
- Matplotlib : 3.6.2
- ffmpeg : 6.1.1










If it would help, I can also provide the
.mp4
file itself, but I'm not quite sure how to upload it. I will be happy to provide any additional information as well.

Unfortunately, I'm not very familiar with video rendering, but I would appreciate any help anyone could provide. Thank you in advance !


-
fftools/ffmpeg_demux : Don't use fake object with av_opt_eval
6 octobre 2023, par Andreas Rheinhardtfftools/ffmpeg_demux : Don't use fake object with av_opt_eval
The av_opt_eval family of functions emits errors messages on error
and can therefore not be used with fake objects when the AVClass
has a custom item_name callback. The AVClass for AVCodecContext
has such a custom callback (it searches whether an AVCodec is set
to use its name). In practice it means that whatever is directly
after the "cc" pointer to the AVClass for AVCodec in the stack frame
of ist_add() will be treated as a pointer to an AVCodec with
unpredictable consequences.Fix this by using an actual AVCodecContext instead of a fake object.
Reviewed-by : Anton Khirnov <anton@khirnov.net>
Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>