
Recherche avancée
Médias (91)
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 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)
-
Can I compile ffmpeg using cygwin so that I would get redistributable dll's of it ?
14 juin 2014, par RellaSo my point is to compile ffmpeg (I know that autobuild tools or minGW can be used but I want cygwin) using gcc to have a library (like .dll or, better .lib) usable from my windows visual studio C++ appication. Is it possible and what are main instructions on how to do such thing ?
-
Android Audio Mixing FMPEG, Mediarecorder file only merging to left channel, delayed
12 avril 2016, par Jeremyworking on an app that takes two sounds, and merges them together. I currently have two problems with it I cannot seem to figure out so would appreciate another set of eyes.
- File from MediaRecorder (voice file) merges into Left Channel Only. (I can only hear voice in left ear)
-
The two files seem like there is a slight delay in the position as they are not aligned perfectly with the merge. Here is the method I have written.
private void mixAudio(File mVoiceFile, File mBeatFile, File mRapFile){
String files = "-i " + mVoiceFile.getAbsolutePath() + " -i " + mBeatFile.getAbsolutePath();
String filter = " -filter_complex [0:a]volume=1.5[a1];[1:a]volume=0.6[a2];[a1][a2]amerge=inputs=2,volume=1.3,pan=stereo|c0code>}
`
and here is how I setup my MediaRecorder
public void setRecorderSource(){
mRapRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);
mRapRecorder.setOutputFormat(MediaRecorder.OutputFormat.MPEG_4);
mRapRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AAC);
mRapRecorder.setAudioEncodingBitRate(128000);
mRapRecorder.setAudioSamplingRate(44100);
mRapRecorder.setAudioChannels(2);
mRapRecorder.setOutputFile(mVoiceFile.getAbsolutePath());
}` -
Convert a RTMP stream to RTSP
22 août 2016, par tankyxI am capturing a game using OBS-studio and streaming it in RTMP through my nginx server. My goal is to convert that RTMP flux to RTSP. How can I achieve that ? I have read about crtmpserver but It seems I can’t configure it.