Recherche avancée

Médias (3)

Mot : - Tags -/plugin

Autres articles (57)

  • 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

  • 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 (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (7440)

  • FFmpeg frame rate when converting from GIF to MP4

    13 juillet 2014, par Mahesh

    I have a GIF image. I am trying to convert it to MP4.

    ffmpeg -f image2 -r {delay_time_of_gif_between_each_frame}/1 -i temp/%05d.png -vcodec libx264 video.mp4

    This MP4 is not running at the same speed when compared to the original GIF. How do I make it to run with the same speed ?

    It seems I am making mistakes with the -r property. I played with it but don’t get anything useful. I even removed it. Still it isn’t working.

  • Fix TypeError on setProgress

    18 novembre 2015, par zboro
    Fix TypeError on setProgress
    

    If there are multiple link elements and favicon is not last,
    first setProgress would cause "Cannot read property ’getAttribute’ of undefined"

    links is now Array instead of HTMLCollection, so that it does’t change while for
    loop iterates through it.

    Closes #17
    Closes #13
    Closes #11

  • Evolution #4610 (Nouveau) : HTML5 : name est déprécié pour une ancre

    30 novembre 2020

    Bonjour,

    https://developer.mozilla.org/fr/docs/Web/HTML/Element/a indique que :
    name HTML 4 seulement, Obsolète depuis HTML5
    Cet attribut est utilisé pour définir une ancre cible au sein de la page. La valeur de name est similaire à la valeur de l’attribut global id, et doit être un identifiant alphanumérique unique au document. Sous la spécification HTML 4.01, id et name peuvent être tous les deux utilisés sur un élément s’ils ont des valeurs identiques.

    Or, SPIP génère des ancres avec un a et un id identique.

    Résolution : ne générer que le id.

    Où ? Dans inc/filtres.php, ligne 2773 (en 3.3)

    Remplacer :
    $bloc_ancre = $ancres[$ancre] = "<a></a>";
    Par :
    $bloc_ancre = $ancres[$ancre] = "";