Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (93)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Les images

    15 mai 2013
  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

Sur d’autres sites (6897)

  • Trolls in trouble

    6 juin 2013, par Mans — Law and liberty

    Life as a patent troll is hopefully set to get more difficult. In a memo describing patent trolls as a “drain on the American economy,” the White House this week outlined a number of steps it is taking to stem this evil tide. Chiming in, the Chief Judge of the … Continue reading

  • ffmpg full album video - multiple audio files one after another

    21 août 2019, par Martin

    I am trying to write an ffmpeg command which will take an image (jpg) and multiple audio files (in this case, lets say 3 mp3 files) and create an mp4 video where each audio file comes one after another (first audio file, then second, then third, etc... no overlap, files play in order one after another).

    I am currently using this command to export a single mp3 file and jpg into an mp4 :

    ffmpeg -loop 1 -y -i "media/pic.jpg" -i "media/01 song name.mp3" -shortest -acodec copy -vcodec mjpeg -s 1920x1080 "outputVideo.mp4"

    Is it possible to combine multiple audio tracks into the video using one command ?

    In the past I was using this command seperately to generate a single audio track made up of multiple audio inputs in order :

    ffmpeg -i '01 - Funky Carla.mp3' -i '02 - Take This Day Away.mp3' -i '03 - Youre The One I Love.mp3' -filter_complex '[0:0][1:0][2:0]concat=n=3:v=0:a=1[out]' -map '[out]' -b:a 320k fullAudio.mp3

    And then just using that track to export one video, but this process takes two separate ffmpeg commands, is long and slow, and produced a huge video file.

    Should I use something like amix / amerge / map ? Any advice/ideas is appreciated, thanks.

  • Best server side video processing library or software [closed]

    16 mai 2013, par Projapati

    I need your suggestion on selecting the right command line tool
    that would allow me to process user uploaded videos.

    By processing I mean :

    • Convert to flv, mp4, ogg etc formats
    • Modify quality, bitrate, framerate etc
    • Control file size and other attributes
    • Might need to process video in batch mode

    This processing will be done though some scheduled process that would grab the file and then process. The tool must have command line utilities.

    I only know the free FFMPEG library.
    Are there other (if costs money then fine) tools that allow me to do these ?

    What is used by youtube if you know it ?

    Thank you