
Recherche avancée
Médias (1)
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (36)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
L’espace de configuration de MediaSPIP
29 novembre 2010, parL’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
Il permet de configurer finement votre site.
La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...) -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...)
Sur d’autres sites (10992)
-
Android to multiple android devices
30 octobre 2013, par nickHi i am trying to stream my android device's screen to multiple android devices. so am sending my device's screenshot frequently to all the devices. its works fine. now, is it possible to convert each image into a video using the ffmpeg on the client device ? so that it looks like a streaming video of my device screen. am i in a right way ? if i am wrong, please suggest me correct way.
-
Building an android application using ant in eclipse - halfninja /jhotovy ffmpeg for android project
1er août 2012, par user1545779I have successfully built the shared objects in halfninja's android-ffmpeg-x264 git project.
That project uses ant. Could anyone who has built that project successfully help with the steps he/she used in the second part to build the final apk or
Could anybody with experience building android applications using ant either as an plugin in Eclipse or as a standalone tool help here
I loaded both the ProjectTest and Project files into Eclipse.I am getting the following 2 errors :
1a. Description : Project "ProjectTest" is missing required Java project "Project"
I have loaded the Project project already and i can see it
1b. Location : Build Path
1c. Type : Build path problem2a. The project cannot be built until the build path problem has been resolved
2b. Location : Unknown
2c. Type : Java Problem
Please note that I have no clue about editing what file : the available files are : Build.properties and build.xmlAlso how do I install ant into Eclipse and how do i run the application, as an Android, or JavaUnit ..?
Any help will be greatly appreciated -
Issues with android-ffmpeg on Android Lollipop
21 mai 2015, par UnnatiI am working on an application which mixes audio and video.
I am following android-ffmpeg guardianproject to solve my purpose. The issue is that it works fine till Android
Kitkat
. But the process fails on AndroidLollipop
.Here is my code to run the process
ProcessBuilder pb = new ProcessBuilder(cmd);
pb.directory(fileExec);
// pb.redirectErrorStream(true);
Process process = pb.start();
// any error message?
StreamGobbler errorGobbler = new
StreamGobbler(process.getErrorStream(), "ERROR", sc);
// any output?
StreamGobbler outputGobbler = new
StreamGobbler(process.getInputStream(), "OUTPUT", sc);
// kick them off
errorGobbler.start();
outputGobbler.start();
int exitVal = process.waitFor();
sc.processComplete(exitVal);
return exitVal;How can i solve this for Lollipop ? Are there any additional files that i should include for solving this for
Lollipop
?