Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (11)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • L’espace de configuration de MediaSPIP

    29 novembre 2010, par

    L’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
    Il permet de configurer finement votre site.
    La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...)

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

Sur d’autres sites (3986)

  • Jwplayer function snapshot using ffmpeg and php

    27 octobre 2013, par Offboard

    before anything I'm using version 6, then the Snapshot plugin does not work.

    I'm finally with 2 questions, take a sequence of photos of a percentage of the video, so googled it and got this code from ffmpeg :

    ffmpeg -i video.mp4 -r 0.5 -f image2 output-%05d.jpeg

    so far so good, but I do not know how to take a screen shot of the video by setting the time, if I'm right this code is per frame.

    I searched again to get the function that calls the images, to generate good is quite simple, but the problem is that I found the pictures looks is all in one look.

    if anyone has any function or know how to do please tell me : D
    My English sucks, so do not call if I messed up.

  • Jwplayer function snapshot using ffmpeg and php

    5 janvier 2021, par Offboard

    before anything I'm using version 6, then the Snapshot plugin does not work.

    



    I'm finally with 2 questions, take a sequence of photos of a percentage of the video, so googled it and got this code from ffmpeg :

    



    ffmpeg -i video.mp4 -r 0.5 -f image2 output-%05d.jpeg


    



    so far so good, but I do not know how to take a screen shot of the video by setting the time, if I'm right this code is per frame.

    



    I searched again to get the function that calls the images, to generate good is quite simple, but the problem is that I found the pictures looks is all in one look.

    



    if anyone has any function or know how to do please tell me : D
My English sucks, so do not call if I messed up.

    


  • Copy mp3 with ffmpeg

    25 février 2015, par Joseph Johnston

    I am trying to create a video out of one image and copy audio on top. Following this (last section), I try ffmpeg -loop 1 -i img.jpg -i audio.mp3 -c:v libx264 -c:a copy -shortest out.mp4 but get a video with no audio. I think its a problem of the output container (mp4) not supporting mp3. What output container might be best ? Due to quality loss, I am reluctant to convert the mp3 to another format. If my audio is mp3, what might I change about this ffmpeg command ?