
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (43)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
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" ; -
MediaSPIP Init et Diogène : types de publications de MediaSPIP
11 novembre 2010, parÀ l’installation d’un site MediaSPIP, le plugin MediaSPIP Init réalise certaines opérations dont la principale consiste à créer quatre rubriques principales dans le site et de créer cinq templates de formulaire pour Diogène.
Ces quatre rubriques principales (aussi appelées secteurs) sont : Medias ; Sites ; Editos ; Actualités ;
Pour chacune de ces rubriques est créé un template de formulaire spécifique éponyme. Pour la rubrique "Medias" un second template "catégorie" est créé permettant d’ajouter (...)
Sur d’autres sites (4682)
-
HTTP live streaming from android device to amazon web server S3
25 juin 2014, par jawad bin zafarI want to stream a video being capture by an android device to an amazon S3 server. Is it possible only in java or I have to use JNI and FFMPEG. Any sample code or online tutorial/Link. Help plz.
-
FFmpeg command profiles for all devices
5 juillet 2014, par N41TKDI want to build online Audio/Video Converter with PHP.
I want to allow users to convert videos automatically without extra configuration like (Bit rate, codec, etc...) by just selecting device name [Ex : Samsung Galaxy S5].
So, I want pre configured file. That contains video configurations of all devices...
Please help me ? About this. Open source project.
-
How to implement ffmpeg filter_complex in c++ code ?
6 octobre 2020, par FluffyI am trying to implement C++ code which uses an FFmpeg filter to merge 2 mono audio streams from input video into 1 stereo stream. The filter itself can be found easily enough in several sources :


FFmpeg : How to merge all audio streams into stereo


http://underpop.online.fr/f/ffmpeg/help/amerge.htm.gz


My question relates to how I can implement this in code. I am using the exact same code found in the FFmpeg examples here :
https://ffmpeg.org/doxygen/trunk/filtering_audio_8c-example.html


I just change the filter_descr variable to :


static const char *filter_descr = "[0:1][0:2] amerge=inputs=2";



When I use this I get the following exception :
Output pad "default" with type audio of the filter instance "in" of a buffer not connected to any destination
I get an Invalid Argument -22 exception when I'm configuring the filter graph


if ((ret = avfilter_graph_config(filter_graph, NULL)) < 0)