Recherche avancée

Médias (1)

Mot : - Tags -/publier

Autres articles (95)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Les notifications de la ferme

    1er décembre 2010, par

    Afin d’assurer une gestion correcte de la ferme, il est nécessaire de notifier plusieurs choses lors d’actions spécifiques à la fois à l’utilisateur mais également à l’ensemble des administrateurs de la ferme.
    Les notifications de changement de statut
    Lors d’un changement de statut d’une instance, l’ensemble des administrateurs de la ferme doivent être notifiés de cette modification ainsi que l’utilisateur administrateur de l’instance.
    À la demande d’un canal
    Passage au statut "publie"
    Passage au (...)

Sur d’autres sites (7795)

  • How to open and view an image stored in .yuv format ?

    20 juin 2018, par Electrix

    I have an image(grayscale) stored as a .yuv file. How do i open the image to see with any viewer or preferably opencv ??
    Using on command line -
    display -size 640x480 -colorspace gray -depth 8 4:2:0 -interlace plane 0001.yuv shows the image in a blurred form.
    ffmpeg -i 0001.bmp.yuv -f rawvideo -pix_fmt gray out.jpg gives -

    Output file #0 does not contain any stream

    Its a 640x480 image. All the related questions talk about .yuv videos.

  • Anomalie #2430 : Changer la source d’un doc image

    25 novembre 2011, par cedric -

    il n’y a pas de raison d’interdire de changer le document, mais une image ne devrait évidemment pouvoir être remplacée que par une autre image. Il faudra surement y revenir a la refonte des modes document.

  • Making a animating image using a video [closed]

    29 juillet 2014, par user3508453

    I want to create an animating image using a video.
    I have a .mp4 video of length 60s.
    Now, I want to capture its first 5s and make a moving .gif image. Is it possible ?
    Can i do it with ffmpeg or canvas ?

    I thought of using ffmpeg to capture 5 frames till 5s and showing them repeatedly but thats too many images.... do u have a solution ?

    UPDATE

    exec("$ffmpegPath -i $vidFilePath -t 10 put.gif  2>&1", $out, $ret);

    This code got it working but now the .gif image is too big 20MB is there any possibility to get a lowered size image ? without affecting resolution ?