Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (33)

  • 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

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

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

  • 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;