Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (81)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (8938)

  • avfilter/vf_scale : simplify color matrix parsing logic

    31 octobre 2023, par Niklas Haas
    avfilter/vf_scale : simplify color matrix parsing logic
    

    No need to write a custom string parser when we can just use an integer
    option with preset values. The various bits of fallback logic are wholly
    redundant with equivalent logic already inside sws_getCoefficients.

    Note : I disallowed setting 'out_color_matrix=auto', because this does
    not do anything meaningful in the current code (just hard-codes
    AVCOL_SPC_BT470BG fallback).

    • [DH] libavfilter/vf_scale.c
  • How to print the video meta output by the browser version of ffmpeg.wasm to the console of Google Chrome ?

    17 janvier 2021, par helloAl

    I would like to ask about how to use the browser version of ffmpeg.wasm.

    


    Through my investigation, I know that the following command can be used to output the video metadata to a file in the terminal of windows or mac.

    


    ffmpeg -i testvideo.mp4 -f ffmetadata testoutput.txt


    


    and then I can get this matadata like this :
enter image description here

    


    I want to parse the metadata of the video through the browser, and then print the metadata to the Google console (or output to a file). At present, I know that the browser version of ffmpeg.wasm can achieve this function, but I have looked at its examples, which does not involve this part of the content. (https://github.com/ffmpegwasm/ffmpeg.wasm/blob/master/examples/browser/image2video.html)

    


    But I want to print it to the console of Google Chrome through the browser version(usage:brower) of ffmpeg.wasm (https://github.com/ffmpegwasm/ffmpeg.wasm).
So I want to ask you how to achieve this, thank you.

    


  • avcodec/pngenc : fix sBIT writing for indexed-color PNGs

    19 juillet 2024, par Leo Izen
    avcodec/pngenc : fix sBIT writing for indexed-color PNGs
    

    We currently write invalid sBIT entries for indexed PNGs, which by PNG
    specification[1] must be 3-bytes long. The values also are capped at 8
    for indexed-color PNGs, not the palette depth. This patch fixes both of
    these issues previously fixed in the decoder, but not the encoder.

    [1] : https://www.w3.org/TR/png-3/#11sBIT

    Regression since : c125860892e931d9b10f88ace73c91484815c3a8.

    Signed-off-by : Leo Izen <leo.izen@gmail.com>
    Reported-by : Ramiro Polla : <ramiro.polla@gmail.com>

    • [DH] libavcodec/pngenc.c