
Recherche avancée
Autres articles (83)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (9722)
-
can't load loadLibrary,Fatal signal 6 (SIGABRT), code -6
8 septembre 2015, par Android EmpireWhen I use
System.loadLibrary("ffmpeg-neon")
,there is a warninglibffmpeg-neon.so has text relocations. This is wasting memory and prevents security hardening. Please fix
and an erro
libc Fatal signal 6 (SIGABRT), code -6 in tid 10203
The source from https://github.com/appunite/AndroidFFmpeg.I build it on Unubtu-14.04.3-64bit,NDK-r10e
-
ffmpeg image extraction code not working
16 mai 2016, par sonam SharmaI am using ffmpeg to extract an image out of a video while uploading
I am using this code for the purposeexec('ffmpeg -i '.$uploadfile.' -ss 00:00:05 -vframes 1 '.$new_image_path);
But the issue is that sometimes it extractes the image and sometimes it simply dosent
I have a dedicated server which has already ffmpeg installed there and I just pushed the vendor folder from my local computer to the server by ftp.
require 'vendor/autoload.php';
What may be the issue here ?
-
Getting an error in simple code with opening the file
10 mars 2016, par DmitryHere is code example :
char* audio1Path = "in1.sdp";
if (open_input_file(audio1Path, &input_format_context_0/*it`s null*/, &input_codec_context_0/*it`s null*/) < 0)
{
av_log(NULL, AV_LOG_ERROR, "Error while opening file 1\n");
exit(1);
}in1.sdp is in folder where exe file is. What`s wrong ?