
Recherche avancée
Autres articles (96)
-
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 (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (8888)
-
Cannot get libav custom IO to work for jpg image file
24 octobre 2012, par BloodwolfI am trying to create a custom input stream. However, avformat_open_input
fails with a random error value. I would appreciate it if someone can tell
me what is it that I am doing wrong. Here is the simplified code.Thank you in advance for your help.
#define BUFSIZE (4 * 1024)
static int ReadPacket(void* opaque, uint8_t* buf, int bufsize)
{
FILE* file = (FILE*) opaque;
int len = fread(buf, 1, bufsize, file);
return len;
}
int main(int argc, char* argv[])
{
av_register_all();
// av_log_set_level(AV_LOG_DEBUG);
const char* fileName = "/home/alan/sample.jpg";
FILE* file = fopen(fileName, "rb");
unsigned char* buffer = (unsigned char*) av_malloc(BUFSIZE);
AVIOContext* avContext = avio_alloc_context(buffer, BUFSIZE, 1, file,ReadPacket, NULL, NULL);
AVFormatContext* pFormatCtx = avformat_alloc_context();
pFormatCtx->pb = avContext;
int val = avformat_open_input(&pFormatCtx, fileName, NULL, NULL);
if (val != 0)
{
printf("Open input failed. Err: %d\n", val);
pFormatCtx = 0; // it is already freed
av_free(avContext);
av_free(buffer);
fclose(file);
return -1;
}
}But if I replace the fileName by "/home/alan/demo.avi", it works..
-
Mp3 streaming still download in progress
10 mars 2018, par edadamI have streaming an mp3 file, from my server, while that’s not fully downloaded for the server. The client detects just the already downloaded audio length. How can I show the original length, if I know that ? Can I write it as id3 tag, for example ?
Server : Debian, Lighttpd, Ffmpeg, bash cgi
-
avutil/tests/channel_layout : test generating a custom layout using ambisonic channels...
25 mars 2022, par James Almer