
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (111)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, 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 (...) -
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 (...)
Sur d’autres sites (10068)
-
Why ffmpeg developers using "runtime if" with macrofied condition
4 avril 2022, par Pavel KorotkevichI'm looking to FFmpeg source code and I find it weird to use weird code like this :


#define MACRO 0
void func(void)
{
 if (MACRO) 
 {
 //code
 }
}



Is there any reason to use "if" instead of "#if ... #endif" when dealing with macros ?


Some examples of this in ffmpeg repo


- 

- GitHub - libavcodec/me_cmp.c
- GitHub - libavcodec/h264pred.c
- GitHub - libavcodec/h264qpel.c
- GitHub - libavcodec/h264chroma.c
- GitHub - libavcodec/h264dsp.c
- GitHub - libavcodec/videodsp.c
- GitHub - libavutil/cpu.c
















-
Resize to a specific width and height using ffmpeg
15 juin 2014, par Lambda DuskI need to generate thumbnails for videos, automatically. I cannot predict the format of the video, but I need the thumbnail to be 220x120 pixels, always. Using
-s 220x120
produces a weird stretch, just like-vf "scale=220:120"
. I’d like the stretching to be uniform, either cutting away top and bottom if the video is too high or adding black borders. -
Why does my video have an audio/mp4 mime type [duplicate]
22 février 2018, par Tucker PeeblesThis question already has an answer here :
I have a video file but it has a mime type of "audio/mp4". Why would that happen. The user who sent it to me said it came from a Flip video camera and was uploaded by usb to her computer.
In my program, I’m checking for ’video/mp4’ mime type when I’m trying to determine if it’s a video, but I want to eventually support audio uploads too which would need to check ’audio/mp4’.
Unfortunately, the video is a personal video of the user’s child so I don’t want to upload it here. Let me know if there is any information I can provide about the video that would help.