
Recherche avancée
Médias (91)
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Echoplex (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Discipline (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Letting you (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
999 999 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (65)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 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 (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Amélioration de la version de base
13 septembre 2013Jolie 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 (...)
Sur d’autres sites (11191)
-
avformat/avidec : Check height
27 février 2022, par Michael Niedermayer -
avutil/common : Fix undefined behavior in av_clip_uintp2_c()
14 juin 2018, par Michael Niedermayeravutil/common : Fix undefined behavior in av_clip_uintp2_c()
Fixes : negation of -2147483648 cannot be represented in type 'int' ; cast to an unsigned type to negate this value to itself
Fixes : 8521/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_DIRAC_fuzzer-5639024952737792Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
How To Get FFMPEG To Continuously Overwrite/Append Audio File ?
28 octobre 2018, par GPinskiyI installed an external audio card onto my Raspberry Pi 3 and I want to Chromecast the recorded audio. I have set up a Node.js server to cast things and have set up the sound card using
alsamixer
. I can correctly hear the line-in on the headphones when I use the commandarecord -D hw:0,0 -r 48000 -f S32_LE -c 2 | aplay -D dmix:CARD=audioinjectorpi,DEV=0 -r 48000 -f S32_LE -c 2
to simulate pass-through.The last step is to actually expose this stream in a way that the Chromecast can access. The Chromecast can’t use a RDP stream or anything similar, only files. So I thought that I could get away with having FFMPEG create an mp3 file that it continuously appends to while dropping the last x seconds so that the overall length of the mp3 file is only like 20 seconds and having a local web server that the Chromecast can get that file from.
I see that there is a way to automatically segment in FFMPEG but that create a bunch of separate 20 sec files rather than a single file that is 20 secs. What would be the correct way of doing this ?