Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (52)

  • 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

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

  • ffplay shows no video from Grass Valley KMX in HDMI input even though HDMI from scope bars displays just fine

    14 juin 2023, par Scott Wilkerson

    I'm trying to replace an unsupported video input player that uses a Decklink card to superimpose video on an iControl widget. I was able to get this to work with a Decklink Mini Recorder 4K card with ffplay using this command :

    


    ffplay -f dshow -video_size 1280x720 -left 631 -top 19 -rtbufsize 702000k -framerate 59.94 -i video="Decklink Video Capture":audio="Decklink Audio Capture" -noborder -hide_banner -alwaysontop

    


    I used bars and tone from a handheld scope to test the video window and it worked great. When I put it into production with input from a Grass Valley KMX it only displays black. I can see the video, chroma, audio etc in the video window stats. The KMX video can display just fine with the Black Magic Media Express app. Any ideas what might be tripping it up ?

    


    I tried -videoinput HDMI, which did not work.

    


  • configure : Make MSVC version grabbing more robust

    13 juin, par Martin Storsjö
    configure : Make MSVC version grabbing more robust
    

    When running plain "cl", to get the MSVC version, it prints the
    version header on stderr, while the usage instructions are printed
    on stdout. Usually, the version on stderr gets flushed first,
    so "head -n1" gets the line it expects, but some times (in particular
    when running MSVC wrapped in wine), it can get the usage line
    first.

    Redirect stdout to /dev/null, so we only grab the version among
    the lines printed to stderr. This should make the version number
    grabbing more robust.

    At least all relevant versions of MSVC seem to print this specifically
    to stderr, not stdout (so we don't risk to miss it) ; checked down
    to MSVC 2010.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] configure
  • avcodec/h264_mp4toannexb_bsf : fix missing PS before IDR frames

    19 mai 2023, par Zhao Zhili
    avcodec/h264_mp4toannexb_bsf : fix missing PS before IDR frames
    

    If there is a single group of SPS/PPS before an IDR frame, but no
    SPS/PPS after that, we will miss the chance to reset
    idr_sps_seen/idr_pps_seen. No SPS/PPS are inserted afterwards.

    This patch saves in-band SPS/PPS and insert them before IDR frames
    when necessary.

    Signed-off-by : Zhao Zhili <zhilizhao@tencent.com>

    • [DH] libavcodec/h264_mp4toannexb_bsf.c
    • [DH] tests/fate/h264.mak