Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (106)

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

  • Formulaire personnalisable

    21 juin 2013, par

    Cette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
    Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire. (...)

  • Qu’est ce qu’un masque de formulaire

    13 juin 2013, par

    Un masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
    Chaque formulaire de publication d’objet peut donc être personnalisé.
    Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
    Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)

Sur d’autres sites (6358)

  • How to make video effect in video by ffmpeg module in Node JS ?

    20 juin 2015, par Nazmul Hossain Bilash

    I am working with ffmpeg. I want to give effects in video like grayscale, Sepia, Blur in video. Also I want to add text in those videos. How can I make this with ffmpeg in node js. I have worked with fluent-ffmpeg & ffmpeg node module.

    I have seen this article : https://trac.ffmpeg.org/wiki/FancyFilteringExamples Here is the example of video effect by ffmpeg command. But I need to to how I can make this effects through Node JS.

  • FFMPEG : how to determine which filters are supported by specific hardware acceleration contexts ?

    7 juin 2020, par John Allard

    I'm having trouble figuring out precisely which filter graph operations are supported by each of the available hardware acceleration methods. I know, for example, that almost all of these methods perform simple operations like scaling, but what about more complicated ffmpeg filters like the new v360 filter or the mestimate filter ?

    



    There's this page (https://trac.ffmpeg.org/wiki/HWAccelIntro) that everyone finds when researching hardware accel with ffmpeg but it mostly touched on encoding and decoding and not filtering.

    


  • How to join 2 audio files into one using either ffmpeg or eac3to ?

    18 janvier 2017, par user3108268

    Not merge or mux into each other, because this is what I found so far, but take 2 .mp3 files e.g. 1 hour long each and join them and it becomes 1 .mp3 file with total of 2 hour long ?

    I did this :

    ffmpeg -i audio.mp3 -i 1.mp3  -filter_complex amerge -c:a libmp3lame -q:a 4 audiofinal.mp3

    But I think it encode both files into each other or something.

    And there’s nothing about this at https://en.wikibooks.org/wiki/Eac3to/How_to_Use

    I’d like to prefer command line solution and not Audacity or mp3DirectCut.

    edit : i tried eac3to m1.mp3+m2.mp3 1.mp3 but it doesn’t join them, output audio is the length of first file.