
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (51)
-
Qu’est ce qu’un éditorial
21 juin 2013, parEcrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
Vous pouvez personnaliser le formulaire de création d’un éditorial.
Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
Sur d’autres sites (9289)
-
django upload and convert and save
31 août 2015, par hessam zaheriI have a form in django that I upload an avi movie and I want to convert to mp4 and save in media root and save path in database record :
class Content(models.Model):
content_title_en = models.CharField(max_length=255)
content_movie = models.FileField(verbose_name='movie')
def save(self, *args, **kwargs):
if self.content_movie:
os.popen("ffmpeg -i C:/new/Wildlife.wmv video.mp4")
super(Content, self).save(*args, **kwargs)and I convert file but I don’t know how save in file and my database record.
-
Evolution #3431 : Logo de SPIP plus gros
30 octobre 2017, par b bJe n’ai pas vraiment d’avis sur la question (pourquoi donc je commente ^^), mais les sources et les déclinaisons du nouveau logo sont dispos sur la zone https://zone.spip.org/trac/spip-zone/browser/_graphismes_/logos/spip/spip_2017
On distribue aussi le logo dans le dossier prive dans trois versions différentes, cf :
https://core.spip.net/projects/spip/repository/entry/spip/prive/images/logo-spip.gif
https://core.spip.net/projects/spip/repository/entry/spip/prive/images/logo-spip.png
https://core.spip.net/projects/spip/repository/entry/spip/prive/images/logo-spip2.gif
https://core.spip.net/projects/spip/repository/entry/spip/prive/images/logo_spip.jpgUn ménage s’impose ? :p
-
ffmpeg - detect frames that have a given image/logo
13 juillet 2012, par sofiaI'm trying to split a video by detecting the presence of a marker (an image) in the frames. I've gone over the documentation and I see removelogo but not detectlogo ;)
Does anyone know how this could be achieved ? I know what the logo is and the region it will be on.
I'm thinking i can extract all frames to png's and then analyse them one by one (or n by n) but it might be a lengthy process..
Any pointers ?
Thanks :)