Recherche avancée

Médias (91)

Autres articles (112)

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

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (14004)

  • How to embed mp4 video into my html5 website

    1er septembre 2015, par Peter London

    I have been trying to embed my mp4 video into html5 I am using chrome
    I have tried this —>> can see video player but no movie

    <code class="echappe-js">&lt;script src=&quot;//api.html5media.info/1.1.8/html5media.min.js&quot;&gt;&lt;/script&gt;
    
    

    tried this too ,,could see video player but no movie I am using chrome

    <video width="320" height="240" controls="controls">
     <source src="movie.mp4" type="video/mp4">
    Your browser does not support the video tag.
    </source></video>

    can anyone help

  • FFmpeg overlay a series of animated gifs onto a video using a filter_complex script text file [closed]

    1er mars 2024, par Massimo Papi

    I am trying to overlay some animated gifs over a video with this command :

    &#xA;

    ffmpeg -y -i 002_meteo.mp4 -/filter_complex graph.txt -s 1920x1080 -r 25 -b:v 5M -c:v h264_qsv -   flags &#x2B;ilme&#x2B;ildct -field_order tt -c:a aac -ar 48000 -b:a 192k 003_meteo.mp4&#xA;

    &#xA;

    My graph.txt (part of) looks like

    &#xA;

    movie=&#x27;./ICONS/pioggia_debole1.png&#x27;[1];    &#xA;movie=&#x27;./ICONS/pioggia_debole1_notte.png&#x27;[2];    &#xA;movie=&#x27;./ICONS/pioggia_debole1.png&#x27;[3];    &#xA;movie=&#x27;./ICONS/pioggia_debole1_notte.png&#x27;[4];    &#xA;movie=&#x27;./ICONS/coperto.png&#x27;[5];&#xA;[0][1]overlay=x=310:y=350:enable=between(t\,0\,10)[0-1];&#xA;[0-1][2]overlay=x=310:y=710:enable=between(t\,0\,10)[0-2];&#xA;[0-2][3]overlay=x=950:y=350:enable=between(t\,0\,10)[0-3];&#xA;[0-3][4]overlay=x=950:y=710:enable=between(t\,0\,10)[0-4];&#xA;[0-4][5]overlay=x=1580:y=350:enable=between(t\,0\,10)&#xA;

    &#xA;

    If I use this line, I can accomplish loop :&#xA;ffmpeg -y -i 002_meteo.mp4 -ignore_loop 0 -i coperto.gif -filter_complex "overlay=x=310:y=350:shortest=1" -codec:a copy -codec:v libx264 output.mp4

    &#xA;

    If I put the filter_complex parameters into my text file gifs loop only for the time of gif duration and only the first time, after that they are not animated anymore.&#xA;Any help would be appreciated. Thanks.

    &#xA;

  • difference between using SDL and using media player class that is videoview

    21 janvier 2014, par Whoami

    I have been surfing the net for some time to get basic understanding of media framework in android. As part of this,

    To display video we have media player class or video view component which can easily display the video. When we have such solution provided by the framework itself, then why there are few components avaiable like SDL [ Simple Direct Media Layer], which claims the same functionality as video view.?

    How both are different ?

    Kindly bare with me, if the question is very basic.