
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 (42)
-
(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 (...) -
Activation de l’inscription des visiteurs
12 avril 2011, parIl est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (4857)
-
I'm installing paraview from source. I don't have a previous installation but I get a CMake error
4 novembre 2014, par MadHatterCMake Error : The following variables are used in this project, but they are set
to NOTFOUND.
Please set them or make sure they are set and tested correctly in the CMake
files :
/home/uma/projects/ParaView/VTK/IO/FFMPEG/FFMPEG_INCLUDE_DIR
used as include directory in directory
/home/uma/projects/ParaView/VTK/IO/FFMPEG
FFMPEG_avcodec_LIBRARY (ADVANCED)
linked by target "vtkIOFFMPEG" in directory
/home/uma/projects/ParaView/VTK/IO/FFMPEG
FFMPEG_avformat_LIBRARY (ADVANCED)
linked by target "vtkIOFFMPEG" in directory
/home/uma/projects/ParaView/VTK/IO/FFMPEG
FFMPEG_avutil_LIBRARY (ADVANCED)
linked by target "vtkIOFFMPEG" in directory
/home/uma/projects/ParaView/VTK/IO/FFMPEG
FFMPEG_swscale_LIBRARY (ADVANCED)
linked by target "vtkIOFFMPEG" in directory
/home/uma/projects/ParaView/VTK/IO/FFMPEGI have all the required libraries installed. I followed http://www.paraview.org/Wiki/ParaView:Build_And_Install instructions for installing paraview. ccmake $HOME/projects/ParaView4 from ParaView-bin gave me the error. Any help is appreciated !
-
ffmpeg looping short videos inside collage of video
16 avril 2018, par Yogesh KaleSee reference link :-
https://trac.ffmpeg.org/wiki/Create%20a%20mosaic%20out%20of%20several%20input%20videos
i am making video collage using ffmpeg. i am able to make a collage of videos.So my question is : looping short videos inside collage of video.
currently short video gets finished and remains as it is till large length video ends.i want looping short video till large video ends
i am using overlay of ffmpeg for making collage -
Using ffmpeg to increase framerate without changing duration [closed]
11 février 2024, par sarunwI want to increase the video frame rate with FFmpeg.


I found from this website, https://trac.ffmpeg.org/wiki/ChangingFrameRate, that I can use
-r
orfps filter
.

The doc said the output duration of the video would stay the same, but that is not the case in my test.


What I tried so far.


I got a video with a duration of 19 seconds at 1.45 fps (I took this number from the QuickTime app)


After using these commands, fps become 30, but the duration becomes 1 second.


ffmpeg -i <input /> -filter:v fps=fps=30 <output>
ffmpeg -i <input /> -filter:v fps=30 <output>
ffmpeg -y -r 30 -i <input /> <output>
</output></output></output>


Here is the file https://www.dropbox.com/scl/fi/nl6yabgl9yzikx12mkvnu/sample2.mp4?rlkey=wk4fsu2vvkcui31cneq8vruik&e=1&dl=0