
Recherche avancée
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)
-
How to create bash script with ffmpeg to flip a dir of vids 180, then stitch together without losing vid length
25 septembre 2022, par Maude Rozencrance's CatI'm trying to make a bash script in linux to flip a bunch of AVI files 180 degrees, then stitch them together without losing the length of the vids. My code works, but it truncates each vid and makes 60 10sec vids, which should be 600 seconds of video, down to about 11 seconds.


I removed the transpose to flip the vids and now I'm getting the correct vid length. So it works, but I have to flip the vid in the video player.


>videos.txt

files=DSCF*.AVI

for f in $files
do
 #make list of vids, copy to videos.txt
 echo "file '$f'" >> videos.txt;
 echo "duration 10.0" >> videos.txt;
 
done

#stitch all vids together
ffmpeg -f concat -safe 0 -i videos.txt -c copy bigvid.AVI



-
avformat/movenc : check that the input timestamps are within the range that can be...
21 février 2014, par Michael Niedermayer -
avfilter/vf_waveform : set color range for output frames
20 mars 2016, par Paul B Mahol