Recherche avancée

Médias (91)

Autres articles (69)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (9518)

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