Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (12)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (2843)

  • Anomalie #3011 (Fermé) : Bug formulaire de contact

    31 mai 2013, par Luc _

    Dans la 3.0.10, lorsque l’on remplit insuffisamment le textarea du formulaire de contact, le message d’erreur est incorrect, il renvoie "forum attention dix caracteres" au lieu du message correspondant (tiré de forum_fr.php semble-t-il). Bug vérifié sur http://grml.eu/spip.php?page=contact.

    Meilleures salutations, Luc.

  • How to add custom external video filter to ffmpeg at runtime ?

    9 décembre 2019, par alex

    Trying to build ffplay app that uses ffmpeg LGPL build with custom filter that I want to plug in during runtime. Differently from adding custom filter during compilation described scenario is not documented, thus tried to experiment. Tried executing avfilter_register and avfilter_graph_alloc_filter functions before avfilter_graph_parse_ptr with avfilter_graph_parse_ptr resulting in -22 return value (Invalid argument).

    Filter graph string : [in] split [T1], fifo, [T2] overlay=0:H/2 [out]; [T1] fifo, crop=iw:ih/2:0:ih/2, my_edgedetect=low=0.1:high=0.4 [T2]

    Lines added to configure_filtergraph function in ffplay.c :

           if ((ret = avfilter_register(&ff_vf_edgedetect)) < 0)
               goto fail;
           if ((ret = avfilter_graph_alloc_filter(graph, &ff_vf_edgedetect, ff_vf_edgedetect.name)) < 0)
               goto fail;

    Custom edge detect filter name (AVFilter.name) changed to my_edgedetect.


    What is the proper way to register custom filter during runtime ?


    P.S.
    Same question on Zeranoa forum

  • Evolution #3964 : mise en forme minimum des formulaires

    26 mars 2018, par nico d_

    Et encore un dans theme.css :

    @media print 
    

    /* Ne pas imprimer */
    .spip-admin,
    .spip-admin-float,
    .spip-previsu display : none ;
    .repondre,
    .formulaire_spip display : none ;
    ...

    Pas de pitié pour les formulaires :p

    Je serais plutôt d’avis de ne garder que ça dans spip.css :

    @media print 
        .forum-titre, .formulaire_forum  display : none ;