
Recherche avancée
Médias (1)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (63)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
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 -
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 (...)
Sur d’autres sites (8348)
-
Anomalie #3338 : Problème de virgule dans les CSS générées (locale fr_FR.UTF-8)
27 janvier 2017, par marcimat ☺☮☯♫Rigolo. À propos (peut être) de ce ticket, j’ai envoyé récemment quelques commits car PHP 7.1 n’apprécie pas les calculs mathématiques avec des faux nombres.
Ainsi"1.6em" * 2
va le faire râler. Il faut forcer le nombre en float dans ce cas là, tel qu’écrirefloatval("1.6em") * 2
Par contre pour la virgule, "," je ne reproduis pas non plus.
-
lavc/opusdsp : RISC-V V (256-bit) postfilter
5 octobre 2022, par Rémi Denis-Courmontlavc/opusdsp : RISC-V V (256-bit) postfilter
This adds a variant of the postfilter for use with 256-bit vectors.
As a single vector is then large enough to perform the scalar product,
the group multipler is reduced to just one at run-time.The different vector type is passed via register. Unfortunately,
there is no VSETIVL instruction, so the constant vector size (5) also
needs to be passed via a register. -
Best way of playing mkv video that is being recorded with ffmpeg in web browser
17 juin 2017, par martin49I’m looking for a way to play a video that is being recorded with ffmpeg in a web browser preferably using HTML5 video tag.
I have this code in my page, the URL is pointing to a video file (example.mkv) that is being recorded by ffmpeg.
<video class="video-player" controls="controls" loop="loop">
<source src="{{asset('example.mkv')}}" type="video/mp4">
<p>Your browser does not support H.264/MP4.</p>
</source></video>Google Chrome/Chromium can play mkv video in HTML5, but only plays the part that was loaded when page was loaded. Is it possible to continue to load the video while it is being recorded ?