Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (45)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

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

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (6036)

  • ImportError : No module named 'pydub'

    19 septembre 2015, par queuetheory

    I am creating a simple script that will use pydub to fetch files from a directory based on their name, then stitch a few of them together and export the result.

    I had the script working great in a Windows environment (Win 7, python 3.4), but now I’m trying to run on OSX.

    I have installed all necessary components - ffmpeg, libav. I have just installed pydub with pip, pulling directly from github.

    My file starts with the input statement from pydub import AudioSegment, and this is what I get :

    Traceback (most recent call last):
     File "functions.py", line 2, in <module>
       from pydub import AudioSegment
    ImportError: No module named 'pydub'
    </module>

    Thoughts ? What am I missing ? Any help is greatly appreciated !

  • lavc : Drop deprecated deinterlace module

    28 juillet 2015, par Vittorio Giovara
    lavc : Drop deprecated deinterlace module
    

    Deprecated in 03/2013.

    • [DBH] libavcodec/avcodec.h
    • [DBH] libavcodec/imgconvert.c
    • [DBH] libavcodec/imgconvert.h
    • [DBH] libavcodec/version.h
    • [DBH] libavcodec/x86/Makefile
    • [DBH] libavcodec/x86/deinterlace.asm
  • fluent-ffmpeg module : "end" event does not fire

    6 décembre 2015, par ndugger

    I’m using the fluent-ffmpeg npm module

    I’ve POSTed a video from my client, and am using new stream.Readable to "read" the video Buffer.

    ffmpeg is converting and saving the file, and everything seems beautiful, but the "end" event never fires.

    My code is as follows :

    const videoStream = new stream.Readable({
       read: function (n) {
           this.push(myVideoBuffer);
       }
    });

    ffmpeg(videoStream)
    .on('progress', e => console.log(e))
    .on('end', () => {
       console.log('ended')
       videoStream.destroy();
    })
    .on('error', e => console.error(e))
    .save(`${process.cwd()}/media/videos/${Date.now()}.mp4`);

    I get a log on every progress event, and it does save the video, but the "end" event’s callback never gets called.

    I assume this is a bug, since everything else works just fine.