
Recherche avancée
Autres articles (35)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)
Sur d’autres sites (4496)
-
Anomalie #2044 (Nouveau) : (Ergonomie) Renforcer les "indicateurs d’emplacement" pour les pages de...
2 mai 2011, par A ShaszinEn naviguant dans l’interface privée, il y a un effet "Mais où suis-je ?" Plusieurs pistes (non exclusives) pour y remédier :
Généraliser le squelette des pages du menu "Configuration" (avec bloc en haut à gauche reprenant toutes les sous-entrées du menu). Un renfort visuel sur la sous-entrée (...)
-
Anomalie #3388 (Nouveau) : Cache partie privée
13 février 2015, par jluc -Dans la 3.1, quand on active l’option "Menu de développement" dans les préférences personnelles,
l’option est activée et l’entrée du menu est créée, mais sans icone.
Il faut un var_mode=recalcul pour qu’elle apparaisse.
Il faudrait rafraîchir le cache de la partie privée à l’activation de cette option. -
avcodec/frame_thread_encoder : Avoid allocations of AVPackets, fix deadlock
7 février 2021, par Andreas Rheinhardtavcodec/frame_thread_encoder : Avoid allocations of AVPackets, fix deadlock
Up until now, when doing frame thread encoding, each worker thread
tried to allocate an AVPacket for every AVFrame to be encoded ; said
packets would then be handed back to the main thread, where the content
of said packet is copied into the packet actually destined for output ;
the temporary AVPacket is then freed.Besides being wasteful this also has another problem : There is a risk of
deadlock, namely if no AVPacket can be allocated at all. The user
doesn't get an error at all in this case and the worker threads will
simply try to allocate a packet again and again. If the user has
supplied enough frames, the user's thread will block until a task has
been completed, which just doesn't happen if no packet can ever be
allocated.This patch instead modifies the code to allocate the packets during
init ; they are then reused again and again.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>