Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (56)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • 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

  • 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

Sur d’autres sites (8652)

  • Revision bbf61e35e7 : Fix bug with put slice cb function. Change-Id : Idfbd87d0a4bebdce7dd587c8446e7fa

    6 décembre 2013, par Frank Galligan

    Changed Paths :
     Modify /vpx/src/vpx_decoder.c



    Fix bug with put slice cb function.

    Change-Id : Idfbd87d0a4bebdce7dd587c8446e7fa75b030d91

  • Problem with uploading files to firebase storage through firebase function

    28 novembre 2018, par Just A Bad Programmer

    I am currently using firebase function to do video compression, the file is first downloaded from the firebase storage, then through fluent ffmpeg, compress the file. Then, the video is re-uploaded to the firebase storage.
    However, the firebase function console shows that there is a error in ffmpeg :

    An error occurred: ffmpeg exited with code 1: compressed-Scooter- One (Always Hardcore).mp3: Read-only file system

    But the firebase storage rules is set to read and write :

    service firebase.storage {
     match /b/{bucket}/o {
       match /{allPaths=**} {
         allow read, write;
       }
     }
    }

    My code : https://github.com/MobileProjectTPC/VideoCompressor/blob/master/functions/index.js

    The upper part is my own code, while the lower part is the testing code from Can you call out to FFMPEG in a Firebase Cloud Function with some changes.

    So, I don’t understand why the ffmpeg function wasn’t able to convert the file. Do any one know why this keeps happening and how to fix it ?

    Also, the output of the functions for my code is as follows :
    Output of my code

    While their code is as follows :
    Output of their code

    As you can see for my code, the error shows up after the output of function finished. While for their code, there isn’t any error at all but no compressed file in firebase.
    Does this means the fluent-ffmpeg function wasn’t even ran at all for their code ?

    Thank You.

  • avformat/matroskaenc : Use more appropriate function name

    15 octobre 2019, par Andreas Rheinhardt
    avformat/matroskaenc : Use more appropriate function name
    

    mkv_start_new_cluster() actually didn't start a new cluster, but ended
    the old one instead and emitted a debug message that it had started a
    new cluster. This has been changed : The debug message has been moved to
    the place that really starts a new cluster and the function has been
    renamed to mkv_end_cluster().

    Furthermore, without this debug message the function can be used for
    flushing.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/matroskaenc.c