
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (76)
-
Modifier la date de publication
21 juin 2013, parComment changer la date de publication d’un média ?
Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
Dans la rubrique "Champs à ajouter, cocher "Date de publication "
Cliquer en bas de la page sur Enregistrer -
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 (9185)
-
dv : Fix small stack overread related to CVE-2011-3929 and CVE-2011-3936.
27 janvier 2012, par Alex Conversedv : Fix small stack overread related to CVE-2011-3929 and CVE-2011-3936.
-
Too small ffmpeg rtsp decoding buffer
30 janvier 2013, par gregoiregentilI'm decoding rtsp on Android with ffmpeg, and I quickly see pixelization when the image updates quickly or with a high resolution :
After googling, I found that it might be correlated to the UDP buffer size. I have then recompiled the ffmpeg library with the following parameters inside ffmpeg/libavformat/udp.c
#define UDP_TX_BUF_SIZE 327680
#define UDP_MAX_PKT_SIZE 655360It seems to improve but it still starts to fail at some point. Any idea which buffer I should increase and how ?
-
FFmpeg check audio channels for silence
10 février 2019, par Tina JI have two
.mp4
files, both having 8 (7.1) audio channels. But in fact, I’ve been told that one has astereo
audio channel + 2 SAP (secondary audio on channels 7-8), and the other one has6 (5.1)
audio channels + 2 SAP (on channels 7-8). So basically the later one has some [real] audio channels such asCenter
channel where that doesn’t exist in the former stereo one (although it has those channels, but apparently they are silent/mute).I’ve been trying to see some differentiating metadata to somehow differentiate the two using
Mediainfo
, but the metadata for both look exactly the same. Also tried some basic metadata retrieval withffmpeg
andffprobe
, again they both look the same - no luck :ffprobe -i 2ch.mp4 -show_streams -select_streams a:0
So the question is : Does
ffmpeg
orffprobe
have any quick ways to differentiate those two ? Are there any audio filters that can detect if a specific audio channel is silent or not ? Or any other differentiating metadata ? I would prefer differentiating the two through some metadata than content analysis.This is a sample of 2-channel
mp4
file, and this one is a sample of the 6-channelmp4
.