Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (31)

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

  • Participer à sa documentation

    10 avril 2011

    La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
    Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
    Pour ce faire, vous pouvez vous inscrire sur (...)

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

Sur d’autres sites (6420)

  • Revision aa88e32017 : Fixes to adaptive denoiser mode. Scale min_consec_zero_last wrt to #temporal la

    20 août 2014, par Marco

    Changed Paths :
     Modify /vp8/encoder/onyx_if.c



    Fixes to adaptive denoiser mode.

    Scale min_consec_zero_last wrt to #temporal layers,
    and use full framerate as factor in noise metric.

    Change-Id : Id0842b90164ce468d1236173c51965e7620c0e12

  • ffmpeg error : Unable to find a suitable output format for 'scale=1500:1000'

    13 février 2021, par Tomáš Zato - Reinstate Monica

    I am trying to convert a bunch of images into a video. The original image resolution is 6000x4000, but if I use ffmpeg to create a video with that resolution, no player can even play it because it's way to huge.

    


    I tried to set the output resolution as such, dividing the input resolution by 4 :

    


    ffmpeg -r 60 -s 1500x1000 -start_number 3790 -i DSC_%04d.jpg -vcodec libx264 -crf 25  -pix_fmt yuv420p ../video_lowres.mp4


    


    This had no effect and still produced 6000x4000 video. So instead, I tried this parameter : scale=1500:1000 The full command I ran :

    


    ffmpeg -r 60 scale=1500:1000 -start_number 3790 -i DSC_%04d.jpg -vcodec libx264 -crf 25  -pix_fmt yuv420p ../video_lowres.mp4


    


    But I got this error :

    


    [NULL @ 000002ad897bd9c0] Unable to find a suitable output format for 'scale=1500:1000'
scale=1500:1000: Invalid argument


    


    How can I create a downscaled video from photos using ffmpeg ?

    


  • vaapi_h264 : Scale log2_max_pic_order_cnt_lsb with max_b_frames

    5 janvier 2017, par Mark Thompson
    vaapi_h264 : Scale log2_max_pic_order_cnt_lsb with max_b_frames
    

    Before this change, it was possible to overflow pic_order_cnt_lsb and
    generate a stream with invalid POC numbering. This makes sure that
    the field is large enough that a single IDR B* P sequence uses fewer
    than half the available POC lsb values.

    (cherry picked from commit 89725a8512721fffd190021ded2d3f5b42e20e2a)

    • [DH] libavcodec/vaapi_encode_h264.c