Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (86)

  • Le plugin : Gestion de la mutualisation

    2 mars 2010, par

    Le plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
    Installation basique
    On installe les fichiers de SPIP sur le serveur.
    On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
    On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
    < ?php (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

Sur d’autres sites (5722)

  • Why Can't i view a few of my mp4 files in my .erb but can in html file ?

    27 avril 2016, par Joseph McKenzie

    I have a site that I’m working on for a customer and the strangest thing is happening to me. I pull in a list of videos from a database table and it plays the video that I want it to, this all works fine.

    For some reason some of the video files will not play in either chrome nor Firefox when viewing my page from an .erb file,but they will work in Microsoft edge. They will all work in an .html file though in all my browsers they are raw .264 files converted to mp4 via ffmpeg .

    I would think if it was a file corruption it wouldn’t play fine in a .html file or Edge.

    &lt;% links[0,1].each do |links|%>-->

    &lt;% if  links[1] == "Not_Watched"%>

    <video width="320" height="240" controls="controls">
    <source src="../videos/&lt;%=links[0]%>" type="video/mp4">

    </source></video>
    &lt;%end%>
    &lt;%end%>

    get '/page1' do


    thing1= database.execute("select * from thing1");
    thing2= database.execute("select * from thing2")                
    links = database.execute("select * from links")                



      erb :page1, :locals => {:thing1=> thing1, :thing2=> thing2, :links => links}



    end

    I had to change some of the code names up because i cant put up to much of this code online...... and there is a lot more I didn’t include because didn’t have anything to do with anything as far as I could imagine. If anyone thinks it could have a bearing ill post some of it but changed up so that I can

  • What video codec for little number of color ?

    12 mars 2013, par Scorpi0

    I am trying to make a video with AForge FFMPEG library.
    My video consist in little arrow moving, drawn with System.Drawing namespace.
    So I draw in a graphic, and I add image by image to the video. This method is inspired from this answer.

    Now, the prolem I got is that all the codecs I tried give very low result. The arrows have very bad borders, I don't think classic codec fit to this type of image.

    In fact, I need something very close to a raw format. But raw format give me 1Go video size for 5 seconds video.

    I'm only drawing arrow, filled with the same color, on a uniform background, so I wonder if there is a special video codec that can output a HD result with an acceptable file size.

    Painted arrow : enter image description here

    Video arrow : enter image description here

    The video will be shipped to our clients. So we are seeking for a solution with the least constraint on the reading process.

  • Build FFmpeg with libaom using MSYS

    21 février 2021, par Alexander Dyagilev

    I'm trying to build FFmpeg (version 4.3.1) with --enable-libaom for Windows using MSYS and Microsoft Visual C&#x2B;&#x2B;.

    &#xA;

    Configure script says : ERROR: aom >= 1.0.0 not found using pkg-config

    &#xA;

    But I have libaom (built it from sources) and paths to it are specified :

    &#xA;

    set INCLUDE=%INCLUDE%;%~dp0..\..\libaom-build\prebuilt\include;&#xA;set LIB=%LIB%;%~dp0..\..\libaom-build\prebuilt\windows\x64\lib;&#xA;

    &#xA;

    This is how I call the configuration script :

    &#xA;

    ./configure --prefix=$PWD/../../prebuilt/windows/x64 --toolchain=msvc --extra-cflags="-MD" --arch=x64 --disable-x86asm --disable-iconv --disable-network \&#xA;--enable-filter=stereo3d --enable-libmp3lame --enable-libaom --enable-libdav1d \&#xA;--extra-cflags="-I$PWD/../../../zlib-build/prebuilt/include -I$PWD/../../../libpng-build/prebuilt/include -I$PWD/../../../lame-build/prebuilt/include -I$PWD/../../../libaom-build/prebuilt/include -I$PWD/../../../libdav1d-build/prebuilt/include" \&#xA;--extra-ldflags="-L$PWD/../../../lame-build/prebuilt/windows/x64/lib -L$PWD/../../../libaom-build/prebuilt/windows/x64/lib -L$PWD/../../../libdav1d-build/prebuilt/windows/x64/lib"&#xA;

    &#xA;