Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (58)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

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

  • avcodec/h264dec : Skip late SEI

    27 avril 2022, par Michael Niedermayer
    avcodec/h264dec : Skip late SEI
    

    Fixes : Race condition
    Fixes : clusterfuzz-testcase-minimized-mediasource_MP2T_AVC_pipeline_integration_fuzzer-6282675434094592

    Found-by : google ClusterFuzz
    Tested-by : Dan Sanders <sandersd@google.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/h264dec.c
  • avcodec/vp3 : Fix end of bitstream check in unpack_superblocks()

    30 mai 2018, par Michael Niedermayer
    avcodec/vp3 : Fix end of bitstream check in unpack_superblocks()
    

    Fixes : regression

    Found-by : Frank Liberato <liberato@google.com>
    Tested-by : Frank Liberato <liberato@google.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/vp3.c
  • Set video's metadata by Python

    17 février 2023, par Anton Bohatov

    I need to upload the video to Google Photos. There is no way to set a date in request, only by metadata. I made a test by setting the date manually (windows, file options) and it works in Google Photos. So, I don't understand how to set it by Python. I found the needed value, but I can't set it.

    &#xA;

    import ffmpeg&#xA;&#xA;file_path = r"test.MP4"&#xA;vid = ffmpeg.probe(file_path)&#xA;&#xA;vid[&#x27;streams&#x27;][0][&#x27;tags&#x27;][&#x27;creation_time&#x27;]&#xA;

    &#xA;

    Result &#x27;2020-11-01T20:07:09.000000Z&#x27;

    &#xA;

    I tried vid[&#x27;streams&#x27;][0][&#x27;tags&#x27;][&#x27;creation_time&#x27;] = &#x27;2015-11-01T20:07:09.000000Z&#x27;

    &#xA;

    But nothing changes. Please help.

    &#xA;

    Note that this is about the video file's metadata, NOT WINDOWS DATA

    &#xA;