
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (57)
-
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...) -
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 (...) -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (7806)
-
Android how to record my mobile screen in android with out using USB cable ?
21 juin 2012, par RajeshI am wondering to do the android application which should record my screen activities and should store as the video file .
1) i need to take the screen shots of my screen movements with the periodic interval and should store in sdcard.
2) how to create the video from the images which is already available in my sdcard. I have tried with the FFMPEG. but i have few problems dont know how to solve it .. the truth is dont know the program to convert it .
3 ) is it possible to show the picture in my camera ?? That means if user opens the camera from my app some times i should show the pictures which available in my sdcard .. if its so please advice me .
Thanks ,
Rajesh . -
Evolution #4573 (Nouveau) : Enlever Jquery UI du Core
13 octobre 2020Jquery UI (https://jqueryui.com/) n’a plus d’activité maintenue (en tout cas aucune release depuis 4 ans maintenant).
Il serait opportun de supprimer jQuery_UI du core, et de le remplacer par des librairies spécifiques pour les besoins identifiés.
Tout d’abord l’usage dans le Core.¶
Je crois que l’on utilise :
le dateur
À remplacer par https://duetds.github.io/date-picker/ ?
Voir également la discussion sur Saisies : https://git.spip.net/spip-contrib-extensions/saisies/issues/43le sortable
À remplacer par https://sortablejs.github.io/sortablejs/ ?
D’autres plugins s’appuient sur d’autres éléments le jQuery-UI :¶
- Accordéons et Tabs (Fabrique)
- Une extension picker multidate (Agenda)
- ...Dans un premier temps, il « suffit » qu’ils mettent le plugin jQueryUi actuel en dépendance...
Dans un second temps... trouver des alternatives adaptées... et faire en sorte qu’elles soient partageables entre différents plugins si besoin.Sur le partageables¶
Il pourrait y avoir un plugin du core regroupant des librairies js utilisées régulièrement, comme le faisait le plugin jquery-ui, mais avec différentes librairies plus indépendantes.
Pourquoi pas. Plutôt que de faire N petits plugins JS. -
Save Slow motion video with ffmpeg on android devices
25 mars 2017, par nkalra0123I want to save videos in slow motion through my android app.I tried to convert videos into slow motion by changing frame rate.
I used the following commands,first command is dumping 30 frames per second from videos to a temp directory, and then second command is using these images to create a video with reduced or faster frame rate and then i am deleting all the images from temp directory.
ffmpeg -i input_file.mp4 -r 30/1 img%03d.png
ffmpeg -framerate 15/1 -i img%03d.png -r 30 -pix_fmt yuv420p out4.mp4But this is a very slow operation. It is taking like forever even for small videos.
I even tried to change PTS(presentation time stamp) of videos, but it is not working properly on android phones
using this command :ffmpeg -i input.mkv -filter:v "setpts=2.0*PTS" output.mkv
as suggested here :
https://trac.ffmpeg.org/wiki/How%20to%20speed%20up%20/%20slow%20down%20a%20videoCan anybody suggest me how can i make it fast. Is it necessary to save frames to a temp directory, can i pass the output of ffmpeg process to another ffmpeg process executing concurrently through some method.
Is there any other ffmpeg command to save the videos in slow motion ?