Recherche avancée

Médias (91)

Autres articles (53)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

Sur d’autres sites (6172)

  • Is it possible to change volume with no reencode with ffmpeg ?

    30 juin 2023, par John Smith

    I just had this question because I used the following command with ffmpeg :

    



    ffmpeg -i input.wav -filter:a "volume=0.2" output.wav


    



    Following the documentation here : https://trac.ffmpeg.org/wiki/AudioVolume

    



    However, when I created the new file, the output was half the size of the input and the bitrate of the audio track was reduced as well.

    



    So my questions are :

    



      

    1. Is the bitrate supposed to decrease with decreasing and increasing volume like so ?
    2. 


    3. Is it possible to change volume without reencoding with ffmpeg ?
    4. 


    


  • Create a looped video with countdown

    13 décembre 2016, par Enrico Deleo

    Something maybe challenging here :
    I want to stream (via rtmp) a video with a fixed image and a countdown applied on it. I know I can create a slideshow with even audio background with ffmtp (http://trac.ffmpeg.org/wiki/Create%20a%20video%20slideshow%20from%20images) but I’m wondering if I can loop it AND apply an overlay with the countdown to a given date.

    Any ideas ?

  • encode YUV420 frame to VP9

    21 novembre 2018, par User800222

    As title,

    I’m pulling frames from a IP camera. I converted the input raw data to YUV420 format, and would like to encode YUV420 to VP9, and save frames as .webm format. Would I be able to do that ? Or should I input a BGR444 format for encoding ?

    BTW, to set up the parameters for encoding vp9. Is the av_dict_set() the right function for setting parameters ?

    Ex : (http://wiki.webmproject.org/ffmpeg/vp9-encoding-guide)

    av_dict_set(&opt, "crf"    , "23", 0);
    av_dict_set(&opt, "speed"  , "4" , 0);
    av_dict_set(&opt, "threads", "8" , 0);
    av_dict_set(&opt, "pass"   , "1" , 0);
    av_dict_set(&opt, "b:v", "1400k", 0);

    Edit : The wiki uses 2 pass for setting parameters, would I be able to do in with 1 pass ?

    Edit2 : Blow code seems to be working, wonder how can I bring the size of the videos (vp9) down ? Currently, I have similar size as using h264 encoder.

       av_dict_set(&opt, "crf"    ,        "45", 0);  
       av_dict_set(&opt, "speed"  ,        "8" , 0);
       av_dict_set(&opt, "quality",        "realtime", 0);
       av_dict_set(&opt, "threads",        "8" , 0);
       av_dict_set(&opt, "tile-columns",   "3", 0);
       av_dict_set(&opt, "frame-parallel", "1", 0);
       av_dict_set(&opt, "row-mt",         "1", 0);

    Update1 :
    YUV420P can be encoded as VP9 !