Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (68)

  • 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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (7338)

  • Split a video to multiple chunks according to multiple starting and ending frame indices

    7 octobre 2015, par Jon

    Are there any tools (like FFmpeg or OpenCV) can split a video into multiple chunks according to some specific starting and ending frame indices ? For example, given (0,20),(21,33),(40,60)..., each tuple means a starting and ending frame indices pair for a chunk, and the neighbor chunks might not adjoin.

    Note that, the number of chunks might be large. For example, given a 1 hour video, there might be 1500 splits.

  • ffmpeg - converting pngs with white background to movie give black background

    14 octobre 2015, par Population Xplosive

    I have a list of files with their names in the form [1-1000].00.png.
    All these are flattened images (graphs) with white background color.
    I am trying to make a movie out of these files using ffmpeg. However, when I use ffmpeg, everything white in the images become black in the movie. And everything black remains the same. The command I used is :

    The command I use is :

    ffmpeg -pix_fmt yuv420p -r 8 -f image2 -pattern_type glob -i
    ’*.00.png’ movie.mp4

  • better way to record desktop via ffmpeg

    29 mars 2014, par Maged E William

    in my form there's a timer that capture the screen as jpeg every 85 ms, it captures until the user shutdown the windows or electricity cut off so the last frame(image) may get corrupt which is okay for me, now when the user log in the form run on the start up now on the on load event it ask if there images in temp folder if yes it open ffmpeg to convert all images into one video but that seems to take a lot of time i have +300000 image and that because it capture the screen for at least a 10 hour every day but that will take a lot of time to convert them, i wonder if there any other way to directly record at a video and when electricity cut off that video file stay good with no corruption and with that i mean :
    i can't scroll or navigate
    enter image description here

    here is my ffmpeg command : -f image2 -framerate 10 -i C:\\Temp\\%06d.jpeg -c:v libx264 -r 10 -crf 37 -pix_fmt yuv420p C:Video\\" + s + ".mp4