
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (70)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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 (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (12923)
-
Anomalie #3930 : Moteur de recherche : combinaison de DEUX mots avec accents ne retourne rien
1er octobre 2018, par - EquipementPour information, j’ai effectué les tests suivants sur SPIP 3.2.1 [23954] (installation neuve puis ajout d’une rubrique "secrétariat général" et de son article publié) :
- sous PHP 7.0 avec mariaDB : la recherche sur "secrétariat général" trouve bien la rubrique.
- sous PHP 5.6 avec mysql 5.6 : la recherche sur "secrétariat général" ne trouve pas la rubrique.Je précise que dans les deux cas, les bases sont en utf8 et que l’interclassement des tables est utf8_general_ci.
A titre de test (ce n’est pas une proposition de correctif), au début de la fonction inc_recherche_to_array_dist, j’ai ajouté :
- <span class="CodeRay"><span class="local-variable">$recherche</span> = ci_rewrite(<span class="local-variable">$recherche</span>);
- </span>
puis j’ai ajouté la fonction :- <span class="CodeRay"><span class="keyword">function</span> <span class="function">ci_rewrite</span>(<span class="local-variable">$chaine</span>){
- <span class="local-variable">$rewrite</span> = <span class="predefined">strtr</span>(
- <span class="local-variable">$rewrite</span>,
- <span class="string"><span class="delimiter">'</span><span class="content">@ÀÁÂÃÄÅÇÈÉÊËÌÍÎÏÒÓÔÕÖÙÚÛÜÝàáâãäåçèéêëìíîïðòóôõöùúûüýÿ</span><span class="delimiter">'</span></span>,
- <span class="string"><span class="delimiter">'</span><span class="content">aAAAAAACEEEEIIIIOOOOOUUUUYaaaaaaceeeeiiiioooooouuuuyy</span><span class="delimiter">'</span></span>
- );
- <span class="keyword">return</span> <span class="local-variable">$rewrite</span>;
- }
- </span>
Avec ce bout de code, la recherche sur "secrétariat général" trouve alors la rubrique, sous PHP 5.6 avec mysql 5.6.Remarque : j’ai aussi essayé avec la fonction translitteration de SPIP, mais cela ne marche pas.
-
FFMPEG loses drop frame flag when converting from 29.97 mov to mp4
18 décembre 2018, par dementisI’ve got a 29.97 drop frame video, proven with the mediainfo output lines
framerate: 29.97
andDelay_DropFrame: Yes
. I want to convert it to an mp4.Running
ffmpeg -i INPUT.mov -y -b:v 1500k -vcodec libx264 -vf scale=640:-1 -pix_fmt yuv420p -movflags +faststart -strict -2 OUTPUT.mp4
yields a non-drop frame video. When I run mediainfo against the new file, I can see that the framerate is still 29.97, but there is no indication of drop frame anymore.
This also happens when i run the above outputting an mov, and also when i runffmpeg -i INPUT.mov OUTPUT.mov
, so i think it’s purely in the conversion where the data is being lost.One lead i’m following is that mediainfo outputs 3 sections for the original mov, [General], [Video], [Other], while my new mp4 only outputs [General] and [Video].
My FFMPEG version is 3.4.1
Any ideas ? -
Can I merge jpeg and mp3 files with 1 command ?
2 janvier 2017, par Pavel Alexandrovich Ak-01I have jpegs and mp3s files.
Is it possible to make slideshow video with intro and music using single command ?
Right now I have to render slideshow first, merge it with intro and only then render everything again while adding music. Not sure if this is very efficient, I would like to do all that in 1 go.