
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (77)
-
Librairies et logiciels spécifiques aux médias
10 décembre 2010, parPour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...) -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)
Sur d’autres sites (5946)
-
Pipe ffmpeg stream to sox rec [closed]
8 novembre 2023, par Red-Tune-84I am reading an audio stream via ffpmeg like this :



ffmpeg -i http://icecast.radiovox.org:8000/live.ogg -f mp3 filename



and want to pipe it to a sox command :



rec filename rate 32k silence 1 0.1 3% 1 3.0 3%.



Ultimately, what I am trying to achieve, is to record the audio from a live Icecast stream of a talk show. I only want recordings though of the individual's speaking. Everytime there is silence, I want to stop the recording and start a new one once they start speaking again.


-
ffmpeg seems to be capping my output
11 septembre 2012, par Kurt SpindlerI'm trying to extract individual frames from a video.
ffmpeg -i face_source.wmv face_sourceframes/image%03d.jpg
is almost working just fine. The first six or so appear perfect (have roughly 30kB file size), but then they continuously degrade (e.g. 23kB, 17kB, etc.) until all frames are 11kB. Of course, these frames are pixelated and not desired.
I tried forcing a bitrate with the
-b
option. ffmpeg tells me this about the inupt video :Duration: 00:00:10.07, start: 0.000000, bitrate: 781 kb/s
So I set bitrate, first using
-b 781k
, and then, just to be safe, also tried doubling it, to-b 1562k
. Neither of these options made any apparent difference in the output.Any help would be appreciated ! Thank you !
-
lavc : add a header for internal generic-layer APIs
20 juin 2023, par Anton Khirnovlavc : add a header for internal generic-layer APIs
The goal is to distinguish between APIs provided by the generic layer to
individual codecs and APIs internal to the generic layer.Start by moving ff_decode,encode_receive_frame() and
ff_decode,encode_preinit() into this new header, as those functions
are called from generic code and should not be visible to individual
codecs.