
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (39)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...)
Sur d’autres sites (6059)
-
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());
}` -
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 ?
-
OpenCV won't open the same videofile as opened before
12 novembre 2013, par OpenMindedI have a problem to load a videofile. I am using Visual Studio 2010 and OpenCV 2.4.6.
Sometimes it loads video properly and sometimes it won't, although it is the same file and the same code (Nothing has changed). So basically, one day it works and the next day does not. I noticed some strange behavior BEFORE.
When I run the code I get Unhandled exception
and then No source available
A few weeks ago I wasn't able to open a video in one of my project. The problem was that if I opened a project from pinned Start menu than the video couldn't be loaded.
BUT when I opened a solution right from a directory than video was loaded properly. I couldn't believe so I tried this more times.
However, in either case it does not work this time.
ALso, I tried to run Visual Studio as admin. Nothing.
What could be a problem here ?