Recherche avancée

Médias (91)

Autres articles (87)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

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

Sur d’autres sites (7805)

  • flac/utils.c : Fix calculation of a tag length.

    21 septembre 2014, par Erik de Castro Lopo
    flac/utils.c : Fix calculation of a tag length.
    

    Patch-from : lvqcl <lvqcl.mail@gmail.com>

    • [DH] src/flac/utils.c
  • avcodec/prores_metadata_bsf : Use AVCOL_TRC_NB - 1 for the valid max range

    3 mai 2020, par Limin Wang
    avcodec/prores_metadata_bsf : Use AVCOL_TRC_NB - 1 for the valid max range
    

    Report by Marton after commit.

    Reviewed-by : Marton Balint <cus@passwd.hu>
    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>

    • [DH] libavcodec/prores_metadata_bsf.c
  • ffmpeg segment command flac output broken 'length' metadata

    7 février 2023, par Martin

    I am trying to use this ffmpeg command :

    &#xA;

    ffmpeg -i "full_lowq.flac" -c copy -map 0 -f segment -segment_times "302.825,552.017" "%03d_output.flac"&#xA;

    &#xA;

    to take my flac file input "full_lowq.flac" and split it at specific points 302.825,552.017 into output audio files like so :

    &#xA;

    %01d_output.flac&#xA;%02d_output.flac&#xA;%03d_output.flac&#xA;

    &#xA;

    And this command does work at the moment, except that my three outputted flac files display the wrong 'length' metadata number when viewed in the win10 file browser. like in this example every outputted file has the same length as 11:16&#xA;enter image description here

    &#xA;

    But if i view the audio files in audacity i can see the correct file length such as file 0 have a length of 05:02 enter image description here

    &#xA;

    Is it possible my input file (https://file.io/oof3eykKwXiI) is corrupted ? or my command is making a mistake here ? wrong codec ?

    &#xA;