
Recherche avancée
Autres articles (52)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)
Sur d’autres sites (9871)
-
How can I find get the frame number from a gif file using ffmpeg's AVFormatContext struct ?
17 décembre 2015, par user1400047I searched from all the subnode of AVFormatContext, buf just found the fps. no frame numbers or duration info at all. who can help me ?
-
Révision 22619 : Complément à r20277 : la réécriture de la fonction build_while pour permettre l’im...
3 décembre 2015, par esj@rezo.netDonner aussi les informations issues de cette meta en cas d’échec de l’opération.
-
Find duration in video in paperclip-ffmpeg in ruby on rails
24 novembre 2015, par Haseeb AhmadUsing gem paperclip-ffmpeg in rails for videos.It works fine now I want to find the duration of video in seconds.I found some material but nothing works like
result = `ffmpeg -i #{self.video.to_file.path} 2>&1`
r = result.match("Duration: ([0-9]+):([0-9]+):([0-9]+).([0-9]+)")
if r
self.duration = r[1].to_i*3600+r[2].to_i*60+r[3].to_i
endBut it gives error
NoMethodError: undefined method `to_file' for #
How I find video length ?