Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (55)

  • List of compatible distributions

    26 avril 2011, par

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (8290)

  • Merge commit '4cc0227040adb9efc63be6a5765e3214f5c6f662'

    3 octobre 2017, par James Almer
    Merge commit '4cc0227040adb9efc63be6a5765e3214f5c6f662'
    

    * commit '4cc0227040adb9efc63be6a5765e3214f5c6f662' :
    apetag : account for header size if present when returning the start position
    apetag : fix flag value to signal footer presence

    This commit is a noop, see
    e8d6fef3161f35878f8e0abf9d27d2c45a5d40b6
    84d874a680ff647bc84de44967b638f246a8b832

    Merged-by : James Almer <jamrial@gmail.com>

  • Combining a looping gif and mp3 to webm

    17 novembre 2017, par punkkapoika

    The gif is 3 Mb, 1 sec long, 15 frames.

    Mp3 is something around 1 Mb.

    The goal is to make 5Mb mp4 or webm file without noticable quality loss.

    When using ffmpeg or similiar tools to render an mp4 or webm file, it doesn’t take in account the fact that the gif loops. The quality is bonkers and the filesize is significantly larger than the source files’ combined. I read something about keyframes on VP8, didn’t get around working with them yet. How would I proceed with this ?

  • SetInodeAttributes error when creating a file inside bucket

    19 août 2022, par Turgut

    I've made a C++ program that lives in gke and takes some videos as input using ffmpeg, then does something with that input using opengl,finally it encodes those edited videos as a single output. Normally the program works perfectly fine on my local machine, it encodes just as I want it to with no warnings whatsoever. But I want it to encode that video directly to the cloud using a gcsfuse bucket. I've succesfully mounted the bucket and it seems to create the file at the start of my programs run. But when the run is over it's suppose to finish the encoding and finilize the video file. However when it reaches the end it gives off this error on the terminal where I run the gcsfuse command :

    &#xA;

    2022/08/19 21:38:15.477586 SetInodeAttributes: input/output error, SetMtime: UpdateObject: not retrying UpdateObject("c36c2633-d4ee-4d37-825f-88ae54b86100.mp4"): gcs.NotFoundError: googleapi: Error 404: No such object: development-videoo-storage1/c36c2633-d4ee-4d37-825f-88ae54b86100.mp4, notFound&#xA;fuse: 2022/08/19 21:38:15.477660 *fuseops.SetInodeAttributesOp error: input/output error&#xA;2022/08/19 21:38:15.637346 SetInodeAttributes: input/output error, SetMtime: UpdateObject: not retrying UpdateObject("c36c2633-d4ee-4d37-825f-88ae54b86100"): gcs.NotFoundError: googleapi: Error 404: No such object: development-videoo-storage1/c36c2633-d4ee-4d37-825f-88ae54b86100, notFound&#xA;fuse: 2022/08/19 21:38:15.637452 *fuseops.SetInodeAttributesOp error: input/output error&#xA;2022/08/19 21:38:15.769569 GetInodeAttributes: input/output error, clobbered: StatObject: not retrying StatObject("c36c2633-d4ee-4d37-825f-88ae54b86100.mp4"): gcs.NotFoundError: googleapi: Error 404: No such object: development-videoo-storage1/c36c2633-d4ee-4d37-825f-88ae54b86100.mp4, notFound&#xA;fuse: 2022/08/19 21:38:15.769659 *fuseops.GetInodeAttributesOp error: input/output error&#xA;

    &#xA;

    At the end I end up with a file with the same size as my desired output but with an invalid video with no frames in it.

    &#xA;

    I'm using a service account to activate my bucket, I can read files just fine and my service account has every permission it needs, here is how I mount my bucket :

    &#xA;

    GOOGLE_APPLICATION_CREDENTIALS=./service-account.json gcsfuse -o nonempty --foreground cloud-storage-name /media&#xA;

    &#xA;

    I'm using ubuntu 22.04

    &#xA;