
Recherche avancée
Médias (1)
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
Autres articles (101)
-
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 (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (13050)
-
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..
-
Révision 19594 : Report de r19593 : Un jquery-ui-1.8.custom pour éviter des intéractions malheure...
14 juin 2012, par marcimat - -
Crop and reduce frame rate without loosing quality in ffmpeg
27 juin 2016, par user413734I would like to take my input file (ProRes highest quality 60 fps) and crop it and convert the frame rate to 15 fps. The following did not work (the cropping alone did work, but the frame rate reduction not) :
ffmpeg -i input.mov -vf "crop=1280:1024:320:28" -strict -2 -vcodec prores -profile:v 3 - r 15 -y output.mov
I also do not know how ffmpeg exactly converts the frame rates. But what I would like to achieve is that it crops the video and then just takes every 4th frame (60/15) and keep the remaining frames on the same quality (copy the original codec).
Any ideas would be great.
Thanks.