Recherche avancée

Médias (1)

Mot : - Tags -/swfupload

Autres articles (97)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (9110)

  • avfilter : always call ff_default_query_formats

    20 octobre 2023, par Niklas Haas
    avfilter : always call ff_default_query_formats
    

    Even if a query func is set. This is safe to do, because
    ff_default_query_formats is documented not to touch any filter lists
    that were already set by the query func.

    The reason to do this is because it allows us to extend
    AVFilterFormatsConfig without having to touch every filter in existence.
    An alternative implementation of this commit would be to explicitly add
    a `ff_default_query_formats` call at the end of every query_formats
    function, but that would end up functionally equivalent to this change
    while touching a whole lot more code paths for no reason.

    As a bonus, eliminates some code/logic duplication from this function.

    • [DH] libavfilter/avfiltergraph.c
  • Black screen when recording specific screen / window using ffmpeg [closed]

    16 mai, par Mark Brin

    Issue :
I'm trying to capture the specific window using ffmpeg & i've tried these below command for that :

    


    ffmpeg -f gdigrab -framerate 30 -i title="Window Title" -b:v 3M -pix_fmt yuv420p output_FILENAME.webm


    


    And also try changing output format to .mp4

    


    ffmpeg -f gdigrab -framerate 30 -i title="Window Title" -b:v 3M -pix_fmt yuv420p output_FILENAME.mp4


    


    but the output video just shows the black screen with cursor.

    


    What i've tried :

    


    


    Get-Process |
  Where-Object { $_.MainWindowTitle -ne "" } |
  Select-Object -Unique MainWindowTitle


    


    System I'm using :

    


    Windows 11

    


  • avcodec/x86/cavsdsp : silence -Wunused-variable on —disable-mmx

    19 septembre 2015, par Ganesh Ajjanagadde
    avcodec/x86/cavsdsp : silence -Wunused-variable on —disable-mmx
    

    This silences -Wunused-variable when compiled with —disable-mmx, e.g
    http://fate.ffmpeg.org/log.cgi?time=20150919094617&log=compile&slot=x86_64-archlinux-gcc-disable-mmx.
    The alternative of header guards will make it far too ugly.

    Signed-off-by : Ganesh Ajjanagadde <gajjanagadde@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/x86/cavsdsp.c