Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (54)

  • 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

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

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

  • How to download/convert multiple streams to multiple outputs with FFmpeg ?

    16 avril 2016, par Website Newbie

    Let’s say I have 20 different online stream videos (playlist.m3u8) and I want every video to output to their own .avi files. How can I do that in single file, so I don’t have to download and convert every single one separately ?

    I found a -map command online, but didn’t get straight answer to this.

    Will this be a working code ?

    ffmpeg -i 1playlist.m3u8 -vf scale=768:-1 -vcodec libx264 -crf 24 -acodec copy -map 0 1.avi \
    -i 2playlist.m3u8 -vf scale=768:-1 -vcodec libx264 -crf 24 -acodec copy -map 1 2.avi \
    -i 3playlist.m3u8 -vf scale=768:-1 -vcodec libx264 -crf 24 -acodec copy -map 2 3.avi
  • Download only a part of the video in the server

    19 août 2013, par whiteletters and blankspaces

    I am building a web application for creating animated gif from youtube videos. These animated gifs will be fews seconds long, but may come from very long videos hosted in Youtube.

    After reading and reading, It looks like I should first download the whole video in server, then cut the required part, ( probably convert it), then process it to generate the gif using ffmpeg for example.

    Could you please tell me :

    Does the whole video should be necessarly downloaded in server ? Or there is a way to ask my server and Youtube Server to exchange only the requested (very small) part of the video ? I think that downloading the whole video will result in bad resources usage, especially in concurrency environnement which will affect performance in my one-server infrascrucure.

    What are the alternatives of downloading the video (or part of video) to achieve such goal ? Is there a client side solution for storing data and using similar ffmpeg functionalities ?

  • How to start a download when file is processing by a software

    13 février 2016, par thesweetiger

    I encode a file with a special watermark for be downlaoded by the user
    I would like to be able to start the downlaod when ffmpeg encode the file.

    I have a php page which one create the water mark , launch ffmpeg and start the download with X-sendifle
    The download don’t start, adding sleep(15) let’s the download start just I receive only what is done

    Actually I use Apache2 as the webserver with X-sendfile mod