Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (72)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Prérequis à l’installation

    31 janvier 2010, par

    Préambule
    Cet article n’a pas pour but de détailler les installations de ces logiciels mais plutôt de donner des informations sur leur configuration spécifique.
    Avant toute chose SPIPMotion tout comme MediaSPIP est fait pour tourner sur des distributions Linux de type Debian ou dérivées (Ubuntu...). Les documentations de ce site se réfèrent donc à ces distributions. Il est également possible de l’utiliser sur d’autres distributions Linux mais aucune garantie de bon fonctionnement n’est possible.
    Il (...)

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

  • What is the Target Build Os in FFmpeg 3.1.3 ?

    28 février 2017, par belle tian

    In configure help info,there are two type of compiler related options :

    • target-os*
    • host-os*

    Do they have the same meaning as GNU Build System ? such build ,host ,target.

  • 【CV】use ffmpeg to process video through cmd in python

    26 novembre 2019, par user66124

    when reading the segment generation function in https://github.com/zhengshou/scnn, I encounter the following sentence :

    cmd = '../lib/preprocess/ffmpeg -i ' + input_video + ' -r ' + str(framerate) + ' -f image2 ' + framedir + videoname +'/%06d.jpg' + ' 2>' + framedir + 'frame_extract.log'

    Is there anyone know the meaning of each part ?

  • avcodec/get_buffer : Don't get AVPixFmtDescriptor unnecessarily

    15 août 2022, par Andreas Rheinhardt
    avcodec/get_buffer : Don't get AVPixFmtDescriptor unnecessarily
    

    It is unused since 3575a495f6dcc395656343380e13c57d48b9f976
    (and the error message is dangerous : av_get_pix_fmt_name(format)
    returns NULL iff av_pix_fmt_desc_get(format) returns NULL
    and using a NULL string for %s would be UB).

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/get_buffer.c