
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 (...) -
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 (...) -
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 (15369)
-
Advise newsportal [on hold]
25 janvier 2016, par DavyJI need some advise for building an news system/site where news photographers can upload photo’s and video in every format from all kind off devices like mobiles, and camera’s from different Brands to keep the system easy for everyone ! Its need to be something with PHP ,js on a wamp. Is ffmpeg enough for this to acomplish ? And if yes, can i use one form fileinput for video and photos ?. Photos needs to be converted to .jpeg and video to .mp4. Maybe someone knows/has a simple PHP form with this functionality. Any help and ideas to accomplish is welcome. Is a lot i want in one solution, but i need some input and advice about what is the best direction for this kind of system.
Thanks in advance !,
Dave -
SDL_SetVideoMode fails under Android ?
17 avril 2013, par user1568549I am trying to buid a Video Player for android using libsdl for rendering and libav for decoding.
First, i cross-compiled the sdl library for Android platform.
Then i ceated the jni layer for my sdl cpp file(already tested under ubuntu)
but when i test it under Android it fails(with fatal error segv11 signal) exactly at the beginning in the following instruction :this->screen = SDL_SetVideoMode(width, height, 0, 0);
Does anyone know any workaround for this error ?
Does anyone know how to display video using sdl under android ?
And is there any instructions or steps that i must follow in order to render SDL gui under android ?Thanks in advance !
-
Getting the frame number as the filename for an extracted frame in ffmpeg
7 janvier 2015, par PrashanthThe following command line extracts the I frames from the video
ffmpeg -i input.flv -f image2 -vf "select='eq(pict_type,PICT_TYPE_I)'" -vsync vfr thumb%04d.png
But the frames are sequentially numbered ..like thumb0001,2,3,4,5.... Suppose the 9th frame is an I frame then I want the the extracted frame’s file name as ’thumb9.png’...suppose if 18th frame is the next I frame then the extracted frame’s filename should be ’thumb10.png’ or ’10.png’...
How to achieve this ? Thanks in advance...