Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (70)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 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 (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP 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 (13016)

  • lavf : Add DSS demuxer

    13 février 2015, par Oleksij Rempel
    lavf : Add DSS demuxer
    

    Signed-off-by : Oleksij Rempel <linux@rempel-privat.de>
    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>
    Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>

    • [DBH] Changelog
    • [DBH] doc/general.texi
    • [DBH] libavformat/Makefile
    • [DBH] libavformat/allformats.c
    • [DBH] libavformat/dss.c
    • [DBH] libavformat/version.h
  • FFMPEG loses drop frame flag when converting from 29.97 mov to mp4

    18 décembre 2018, par dementis

    I’ve got a 29.97 drop frame video, proven with the mediainfo output lines framerate: 29.97 and Delay_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 run ffmpeg -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 ?

  • Anomalie #3930 : Moteur de recherche : combinaison de DEUX mots avec accents ne retourne rien

    1er octobre 2018, par - Equipement

    Pour 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é :

    1. <span class="CodeRay"><span class="local-variable">$recherche</span> = ci_rewrite(<span class="local-variable">$recherche</span>);
    2. </span>

    Télécharger


    puis j’ai ajouté la fonction :

    1. <span class="CodeRay"><span class="keyword">function</span> <span class="function">ci_rewrite</span>(<span class="local-variable">$chaine</span>){
    2.   <span class="local-variable">$rewrite</span> = <span class="predefined">strtr</span>(
    3.       <span class="local-variable">$rewrite</span>,
    4.       <span class="string"><span class="delimiter">'</span><span class="content">@ÀÁÂÃÄÅÇÈÉÊËÌÍÎÏÒÓÔÕÖÙÚÛÜÝàáâãäåçèéêëìíîïðòóôõöùúûüýÿ</span><span class="delimiter">'</span></span>,
    5.       <span class="string"><span class="delimiter">'</span><span class="content">aAAAAAACEEEEIIIIOOOOOUUUUYaaaaaaceeeeiiiioooooouuuuyy</span><span class="delimiter">'</span></span>
    6.   );
    7.     <span class="keyword">return</span> <span class="local-variable">$rewrite</span>;
    8. }
    9. </span>

    Télécharger


    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.