Recherche avancée

Médias (0)

Mot : - Tags -/optimisation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (31)

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

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

Sur d’autres sites (4217)

  • avformat/segafilm : drop song and dance, this seems not to do anything anymore since...

    7 janvier 2014, par Michael Niedermayer
    avformat/segafilm : drop song and dance, this seems not to do anything anymore since a long time
    

    Fixes use of uninitialized memory
    Partly fixes ; msan_uninit-mem_7fb7d24780d0_2744_R03T.CAK
    Found-by : Mateusz "j00ru" Jurczyk and Gynvael Coldwind
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/segafilm.c
  • avcodec : add decoder for High Voltage Software's ALP ADPCM

    8 mars 2020, par Zane van Iperen
    avcodec : add decoder for High Voltage Software's ALP ADPCM
    

    Signed-off-by : Zane van Iperen <zane@zanevaniperen.com>
    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] Changelog
    • [DH] doc/general.texi
    • [DH] libavcodec/Makefile
    • [DH] libavcodec/adpcm.c
    • [DH] libavcodec/allcodecs.c
    • [DH] libavcodec/avcodec.h
    • [DH] libavcodec/codec_desc.c
    • [DH] libavcodec/version.h
  • Select song sample rate

    22 avril 2022, par Clamarc

    I have a folder with several mp3's and I needed to separate (copy) all the 4800 hz sample rate files to another folder.

    &#xA;

    I have a folder "General Audios" and I created another one called "Audios 48000 sample rate"

    &#xA;

    I'm running the ffprobe command that returns the sample rate value of each song.. but when I try to save the value in a string to be able to use the IF and copy only the ones with 48000 hz, I get a message that the command is a command input ? what is wrong ?

    &#xA;

    md "C:\Users\%username%\Desktop\&#xC1;udios 48000 sample rate"&#xA;&#xA;cd /d "C:\Users\%username%\Desktop\&#xC1;udios Gerais"&#xA;&#xA;for %%F IN (*) do (&#xA;   ffprobe -i "%%F" -v error -show_entries stream=sample_rate ˆ&#xA;       -of default=noprint_wrappers=1:nokey=1 set %%S if %%S==48000 ˆ&#xA;          "C:\Users\%username%\Desktop\&#xC1;udios 48000 sample rate\%%F"&#xA;   )&#xA;&#xA;pause&#xA;

    &#xA;

    EDITED :&#xA;I have no more code, this is the only one, I run the ffprobe command in a folder and I select the ones that have 48000Hz to copy to another folder, that's all !?!?

    &#xA;