
Recherche avancée
Médias (91)
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Echoplex
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Discipline
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Letting You
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (67)
-
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
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 (...) -
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" ;
Sur d’autres sites (5797)
-
what live streaming formats supports gud quality video call from speeding car(80kmph)
13 juin 2013, par neckTwivideo call drops when i'm in my car at more than 50kmph. i'm using ffmpeg to out-stream my video and vlc to capture friend's in-stream in flv rtmp live stream format on ubuntu with airtel 3g usb data card(3Mbps).
what is the best streaming format and ffmpeg video quality options in this case ? are there any modems(with antennas) that support this system ?
-
Encode PCM to MPEG-2 AAC with FFmpeg APIs
13 août 2019, par Tank2006My environment is "ffmpeg version 3.4.6-0ubuntu0.18.04.1"
I wrote a program to encode audio data into MPEG-2 AAC with reference to an official example.
First, I simply changed the encoder value(and the full source code I wrote is here).
if (!(output_codec = avcodec_find_encoder(AV_CODEC_ID_AAC))) {
But FFmpeg S/PDIF encoder(spdifenc.c) returns an error “Wrong AAC file format”.
I use
avctx->profile = FF_PROFILE_MPEG2_AAC_LOW(FF_PROFILE_MPEG2_AAC_HE);
but it takes no effects.Considering the possibility that the official binary was not compiled with the "CONFIG_ADTS_HEADER" C flag, I ran the following code directly as this :
buf = output_packet.data;
int err = init_get_bits8(&gb, buf, 7);
if (get_bits(gbc, 12) != 0xfff) return AAC_AC3_PARSE_ERROR_SYNC;This didn’t find ADTS header "0xFFF", therefore, an encoder doesn’t seem to work as expected.
How do I encode ffmpeg-2 aac audio with ffmpeg apis ?
-
Converting From 4-bit RAW Audio to WAV (or another output format)
10 février 2017, par HaravikkOkay, so I’ve got some .raw files from an old game (Zork Nemesis) and determined that they’re audio files, however I’m having trouble converting them into something meaningful.
With a bit of trial and error in Audacity I’ve found that I can listen to a still noisy version of the audio using raw file input settings of 8-bit signed PCM in stereo with a sample rate of 22050hz. However, my suspicion is that the files may in fact be encoded in 4-bits with a sample rate of 44100hz, but I’m having trouble finding a tool that can handle this.
What I’m looking for is either a tool that can handle 4-bit raw formats, or even a tool that can determine (or guess at) the format of a given .raw file, so I know for sure what I’m dealing with (as I’m just going by trial and error so far).
I’ve tried
sox
, but I’m most likely doing something wrong as it complains of an unsupported size :sox -r 44100 -e signed -b 4 -c 2 in.raw out.wav
I was also going to try
ffmpeg
, but I can’t find the appropriate format/codec to set.In case it gives any further clues ; I’ve tried various combinations of settings, increasing sample size while decreasing sample rate increases the (white-)noise, and even 8-bit is still noisy, which is why I’m thinking 4-bit. I’ve tried signed and unsigned, which strangely doesn’t seem to make much of a difference