Recherche avancée

Médias (0)

Mot : - Tags -/publication

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (54)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette 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.

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

Sur d’autres sites (9981)

  • doc/filters : add missing palette* options

    9 septembre 2016, par Lou Logan
    doc/filters : add missing palette* options
    

    Introduced in b7e78c7 and 93ae68d.

    Fixes #5835.

    The paletteuse debug options that are not part of the official API are
    not included (debug_kdtree and color_search).

    Signed-off-by : Lou Logan <lou@lrcd.com>

    • [DH] doc/filters.texi
  • Convert png to mp4

    9 septembre 2018, par user3073118

    I have a lot of png files that I want to convert to mp4 in R.

    I used to convert it to .gif using ImageMagick, then converting it using a free online website from .gif to MP4.

    library(magick)
    system(command = "convert -delay 70 '/Users/Desktop/figures/*.png' '/Users/Desktop/figures/animation.gif'")

    But the current file size is too big, such that even converting it to .gif takes hours.

    Is there a way I can convert it directly from png to mp4 in R ?

    I tried to look up ffmpeg but I have a MAC and installing it is a little confusing...

    Thanks !

  • how to use multithreading in php

    7 mai 2012, par user1379863

    I am now developing a website about sharing videos in the Internet .
    the flow is as follows :
    the user upload the video -> the server-side receives the video and uses ffmpeg to convert the video format to flv -> the user goes on doing other things in the site.
    now I want to establish another thread to do the convert work(use ffmpeg to convert the video format to flv) such that the user can do other thing without waiting the video converted to flv. but don't know how !