Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (90)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (10497)

  • avcodec/parser : put lost comments back

    26 février 2014, par Michael Niedermayer
    avcodec/parser : put lost comments back
    

    Found-by : ubitux
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/parser.c
  • Combining thousands of audios in NodeJs

    3 mars 2021, par Ishan Sharma

    I am getting E2BIG error when combining more than 50 audios using SOX is one go. Is there a way to handle this ? I wish to combine thousands of audios in one go. One solution is to make a recursive batch function using SOX but looking for a simple solution.

    &#xA;

    Trying to implement this in NodeJs.

    &#xA;

    Appreciate the help. Thanks.

    &#xA;

  • Download highest quality audio from YouTube using youtube-dl

    3 juin 2020, par darvast

    I'm using this command :

    &#xA;&#xA;

    youtube-dl -f bestaudio --extract-audio --audio-format "opus" --add-metadata -o "%(playlist_index)s-%(title)s.%(ext)s" "https://www.youtube.com/playlist?list=OLAK5uy_lWRq5MhPNthDDe1nYXtlekDA40wtrpKE0"&#xA;

    &#xA;&#xA;

    Here's the available streams :

    &#xA;&#xA;

    [info] Available formats for 6t1dErgAglk:&#xA;format code  extension  resolution note&#xA;249          webm       audio only tiny   58k , opus @ 50k (48000Hz), 416.34KiB&#xA;250          webm       audio only tiny   72k , opus @ 70k (48000Hz), 516.52KiB&#xA;140          m4a        audio only tiny  130k , m4a_dash container, mp4a.40.2@128k (44100Hz), 1.06MiB&#xA;251          webm       audio only tiny  131k , opus @160k (48000Hz), 923.79KiB&#xA;278          webm       140x144    144p   32k , webm container, vp9, 25fps, video only, 159.74KiB&#xA;160          mp4        140x144    144p   54k , avc1.4d400b, 25fps, video only, 278.62KiB&#xA;242          webm       232x240    240p   71k , vp9, 25fps, video only, 321.29KiB&#xA;134          mp4        350x360    360p   96k , avc1.4d4015, 25fps, video only, 303.75KiB&#xA;133          mp4        232x240    240p  124k , avc1.4d400c, 25fps, video only, 651.46KiB&#xA;243          webm       350x360    360p  126k , vp9, 25fps, video only, 545.77KiB&#xA;135          mp4        466x480    360p  174k , avc1.4d401e, 25fps, video only, 534.97KiB&#xA;244          webm       466x480    360p  215k , vp9, 25fps, video only, 1003.20KiB&#xA;136          mp4        698x720    720p  305k , avc1.4d401f, 25fps, video only, 942.76KiB&#xA;137          mp4        1048x1080  1080p  494k , avc1.640020, 25fps, video only, 1.49MiB&#xA;247          webm       698x720    720p  593k , vp9, 25fps, video only, 1.97MiB&#xA;248          webm       1048x1080  1080p  768k , vp9, 25fps, video only, 3.81MiB&#xA;18           mp4        350x360    360p  213k , avc1.42001E, 25fps, mp4a.40.2@ 96k (44100Hz), 1.73MiB&#xA;22           mp4        698x720    720p  242k , avc1.64001F, 25fps, mp4a.40.2@192k (44100Hz) (best)&#xA;

    &#xA;&#xA;

    When I run the above command it seems to be converting m4a to opus : https://prnt.sc/st2l8u

    &#xA;&#xA;

    I'm wondering why it's doing that instead of getting it from the webm container ?

    &#xA;