
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (111)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
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 (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (15296)
-
Split out extension
24 juin 2013, par nschonniSplit out extension
-
Split VFR video into CFR chunks ?
17 janvier 2021, par Daniel L.Is there a good way to split a VFR video into chunks that split whenever the framerate changes ?


I have a video that I want to edit that is VFR but my editor doesn't support VFR. I don't want to set a constant framerate and convert it because that could degrade some sections of the video.


I was thinking that one way working with it would be to take it and split it into chunks that are CFR to work on separately (hopefully they'll be large sections).


I haven't found a good way to do it though, ffmpeg at least doesn't seem to have something built in to let me do it.


An alternative question would be : is there some software that would let me easily scan the video to find the framerates used ? If it's not too crazy, I can convert to a common multiple framerate, edit and then remove the duplicate frames with Avisynth later.


-
ffmpeg split into frames
4 novembre 2011, par bradleygHey, I want to split a video which is one second long (25fps)into 25 seperate video files. I know I can split it up into jpegs but I need to retain the audio. So when I recompile audio is still there.
This is what I tried to grab the first frame only (with audio) :
ffmpeg -i 1.mov -vcodec mjpeg -qscale 1 -an -ss 00:00:00:00 -t 00:00:00:1 frame1.mov
But it doesn't seem to work. Am I wrong in assuming ffmpeg supports time stamps in this format ? hh:mm:ss:f ?
Thanks