Recherche avancée

Médias (91)

Autres articles (113)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (10752)

  • Dynamic way to add length to an html5 video

    6 septembre 2013, par Eric Paulsen

    I'm looking for a way to update the video length on an HTML5 video in the client side using Javascript.

    Example : I have a video clip loaded on the page that is 30 seconds long and I want to update it on the fly to be 45 seconds long.

    I had a look at the duration property of the HTMLMediaElement, but quickly discovered that the property was read only (source : https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement). I also stumbled upon this blog post, but my ideal solution would be to have one continuous clip. I could accomplish this on the server side using a tool like FFMPEG, but I'd rather not add an increase in load time for our users.

    Any suggestions ?

  • avcodec/scpr : check that current row is in valid range

    23 février 2017, par Paul B Mahol
    avcodec/scpr : check that current row is in valid range
    

    Stops writing out of dst array.

    Signed-off-by : Paul B Mahol <onemda@gmail.com>

    • [DH] libavcodec/scpr.c
  • FFmpeg video from image plus audio length issue

    1er juin, par blackbrayn

    I'm having issues regarding the output video length when using the following code which seems to work for everybody else.

    &#xA;

    On a input mp3 of 04:56 I get a 05:09, the last part is only the image, no sound, for a longer mp3 input file I get more silent video at the end.

    &#xA;

    I'm using the "-shortest" option just before the output file as an argument , as suggested in other threads around stackoverflow/superuser.

    &#xA;

       ffmpeg -loop 1 -i image.jpg -i audio.mp3 -c:v libx264 -tune stillimage -c:a aac -strict experimental -b:a 192k -shortest out.mp4&#xA;

    &#xA;

    I already changed the input file type - wav , and the image - png, jpg, same silent "overhead" at the end of the video.

    &#xA;