
Recherche avancée
Autres articles (100)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (11245)
-
FFMPEG change audio pitch of mp4 video [on hold]
17 octobre 2019, par PatrickHy Community,
im looking for an solution to fade the pitch of an audio track in an mp4 file.
so i want to increase the pitch from its half duration to the end of the file gradually.is it possible by
ffmpeg
?thank you in advance.
-
Command find and and convert using ffmpeg
10 décembre 2013, par molwikoI would like to combine the two following commands to find mp4 files and convert them to mp3 and save them with same name.
Thanks in advance.
The two command line :find ./ -name '*.mp4'
ffmpeg -i video.mp4 -vn -acodec libmp3lame -ac 2 -ab 160k -ar 48000 audio.mp3 -
Seeking Guidance on Audio Development Libraries for Playing Various Music Formats on iOS [closed]
3 décembre 2023, par FaiChouI am exploring audio development and am overwhelmed by the numerous libraries available :


- 

- AVFoundation
- MediaPlayer
- AVFAudio
- Audio Engine
- CoreAudio
- AudioToolbox
- Audio Unit
















Which of these should I use to play both network or local music files (flac/wav/mp3/aac/wma/ogg) ? What are their specific roles ?


My understanding is that I should use
ffmpeg
for demuxing to unpackage, then decode the stream to get PCM samples, possibly using Audio Engine for playback. Is this a software decoding method ? For Apple-supported formats like mp3, can I bypassffmpeg
for decoding ? Which library would be most suitable in this case ?

Additionally, how do I extract metadata (song name, artist, cover, lyrics, etc.) from music files ? Apple's own solutions seem to support only ID3 or iTunes tags. How should I handle other formats like wav/flac ?


The two links below are the resources I've referenced, but they seem outdated. My search for newer, reliable explanations has been fruitless.