Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (52)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (6231)

  • Publishing mp4 video to RTMP red5 server doesn't work

    25 septembre 2017, par k-hir
    ffmpeg -re -i filename.mp4 -c copy -movflags +frag_keyframe -f mp4 rtmp://localhost/oflaDemo/keyname

    With the command above, I could publish it to red5 with no error, but I couldn’t view the video through flowplayer, unless I put -f flv instead.
    Can someone tell me if it’s because ffmpeg does not support mp4 video stream, or is it the red5 app (oflaDemo)’s problem ?

    Here are the two sources of the viewer :
    Neither of them work if the video is sent by -f mp4.

    First

     
     <code class="echappe-js">&lt;script src=&quot;http://vjs.zencdn.net/4.2.0/video.js&quot;&gt;&lt;/script&gt;

    To view this video please enable JavaScript, and consider upgrading to a web browser
    that supports HTML5 video

    Second one

    <code class="echappe-js">&lt;script src=&quot;//code.jquery.com/jquery-1.11.2.min.js&quot;&gt;&lt;/script&gt;

    &lt;script src='http://stackoverflow.com/feeds/tag/demos/flowplayer/flowplayer.min.js'&gt;&lt;/script&gt;

    &lt;script&gt;<br />
    &lt;!--<br />
    flowplayer(&quot;#player01&quot;, {<br />
     autoplay: false,<br />
     live: true,<br />
     clip: {<br />
       sources: [<br />
         {type: &quot;video/flv&quot;, src: &quot;rtmp://localhost/oflaDemo/keyname&quot;}<br />
       ]<br />
     }<br />
    });<br />
    //--&gt;<br />
    &lt;/script&gt;
  • Get libx264 to work on flutter android application

    17 juillet 2023, par ololo

    I am using ffmpeg_kit_flutter package in my flutter application and I need to use libx264.

    &#xA;

    In my Podfile for ios I have the following setup which helped me got libx264 working perfectly for ios :

    &#xA;

     if plugin_name == &#x27;ffmpeg_kit_flutter&#x27;&#xA;        pod &#x27;ffmpeg_kit_flutter/full-gpl&#x27;, :path => File.join(relative_symlink_dir, &#x27;plugins&#x27;, plugin_name, platform)&#xA;      else&#xA;        pod plugin_name, :path => File.join(relative_symlink_dir, &#x27;plugins&#x27;, plugin_name, platform)&#xA;      end&#xA;

    &#xA;

    However, when I ran the flutter app on android I am getting the error that states :

    &#xA;

    &#xA;

    Unknown encode 'libx264'

    &#xA;

    &#xA;

    Are there any configurations I need to do on the android side of things to get it working for android as well ?

    &#xA;

  • ffmpeg blend filter not work right in android

    15 mai 2018, par tainguyen

    I’m doing my android project which uses blend filter to create uncover down video transition. My test device is Samsung S4 (Android version : 4.4.2)
    this is my command string :

    ffmpeg
    -loop 1 -t 1 -i img001.jpg
    -loop 1 -t 1 -i img002.jpg
    -loop 1 -t 1 -i img003.jpg
    -loop 1 -t 1 -i img004.jpg
    -loop 1 -t 1 -i img005.jpg
    -filter_complex
    "[1:v][0:v]blend=all_expr='if(lte(Y,N*H/24),A,B)'[b1v];
    [2:v][1:v]blend=all_expr='if(lte(Y,H*N/24),A,B)'[b2v];
    [3:v][2:v]blend=all_expr='if(lte(Y,H*N/24),A,B)'[b3v];
    [4:v][3:v]blend=all_expr='if(lte(Y,H*N/24),A,B)'[b4v];
    [0:v][b1v][1:v][b2v][2:v][b3v][3:v][b4v]
    [4:v]concat=n=9:v=1:a=0,format=yuv420p[v]" -map "[v]" out_cover_top.mp4 -y

    The result video transition is not scroll from the top to the bottom as I want. It break into several parts ( the red arrow show you the top and bottom of an part).
    enter image description here

    Help me please.