Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (88)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (12212)

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

    


  • 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
  • [h264_nvenc : InitializeEncoder failed:supported only with separate color plane on this architecture

    4 janvier 2021, par gpuguy

    I am learning ffmpeg for the first time. What I want is to see how it performs on CPU and on GPU when it comes to transcoding.

    


    My machine is having a GT640 GPU card (GT640 is a Kepler card) and I am running a windows 7 , 64bit.
I issue the following command :

    


    ffmpeg -i lec_2.mp4 -c:v h264_nvenc -profile high444p -pixel_format yuv444p -preset default output.mp4


    


    But I am getting following errors :

    


    [h264_nvenc @ 0000000000363a80] The selected preset is deprecated. Use p1 to p7
+ -tune or fast/medium/slow.
[h264_nvenc @ 0000000000363a80] InitializeEncoder failed: invalid param (8): 444
 is supported only with separate color plane on this architecture.
Error initializing output stream 0:0 -- Error while opening encoder for output s
tream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height
[aac @ 0000000000365980] Qavg: 18941.322
[aac @ 0000000000365980] 2 frames left in the queue on closing
Conversion failed!


    


    My questions are :

    


      

    1. From this output can I assume that nvenc is supported on my card since it does not complaint of no nvenc supported GPU ?

      


    2. 


    3. How should the above command be modified so as to make it work correctly

      


    4.