Recherche avancée

Médias (1)

Mot : - Tags -/remix

Autres articles (44)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • 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 ;

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

Sur d’autres sites (7480)

  • ffmpeg halt when I turn video into image

    1er août 2018, par roomy

    My command is :
    ffmpeg -threads 1 -i http://illegal-video.nos.netease.com/hDHnMXpHywUcs2q7.mp4 -vf fps=1/5.0 C:\Users\Roomy\Desktop\test\image%d.jpg

    but I got
    enter image description here

    And ffmpeg is halt when the error occurs.

    Is that a bug ?

  • ffmpeg batch script that combines multiple audio clips with one image > mp4

    2 mars 2016, par Jamie

    I found this script in another thread and edited it to make this :

    @echo off
    for %%F in (*.jpg) do (
      if exist "%%~nF.mp3" (
         ffmpeg -loop 1 -i "%%~nF.jpg" -i "%%~nF.mp3" -acodec libvo_aacenc -vcodec mpeg4 -shortest "%%~nF.mp4"
      )
    )

    It combines all mp3 files with all jpeg files that share the same filename into a mp4 video with the static image running.

    But the problem is - if I want to convert more than one mp3 file using the same image (let’s say three mp3s), I have to duplicate the same jpeg image three times !

    For example, if I have three Michael Jackson mp3 files :

    MJ1.mp3
    MJ2.mp3
    MJ3.mp3

    I would need to create :

    MJ1.jpg
    MJ2.jpg
    MJ3.jpg

    But really I only need one image for all three mp3s.

    What edits do I need to make to the script combine all mp3s with one jpeg file ? Let’s say I wanted every mp3 file in the folder to convert with default.jpg. How would I do this ?

  • Add image.png overlay on video FFmpeg ?

    13 mai 2016, par Lợi Nè

    Add image.png overlay on video FFmpeg ?

    enter image description here