
Recherche avancée
Autres articles (31)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP 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, parCe 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, parLe 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 Niedermayeravformat/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> -
avcodec : add decoder for High Voltage Software's ALP ADPCM
8 mars 2020, par Zane van Iperenavcodec : 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> -
Select song sample rate
22 avril 2022, par ClamarcI have a folder with several mp3's and I needed to separate (copy) all the 4800 hz sample rate files to another folder.


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


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 ?


md "C:\Users\%username%\Desktop\Áudios 48000 sample rate"

cd /d "C:\Users\%username%\Desktop\Áudios Gerais"

for %%F IN (*) do (
 ffprobe -i "%%F" -v error -show_entries stream=sample_rate ˆ
 -of default=noprint_wrappers=1:nokey=1 set %%S if %%S==48000 ˆ
 "C:\Users\%username%\Desktop\Áudios 48000 sample rate\%%F"
 )

pause



EDITED :
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 !?!?