Recherche avancée

Médias (1)

Mot : - Tags -/swfupload

Autres articles (99)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

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

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

Sur d’autres sites (9583)

  • How to use -vf format="gray" in ffmpeg python

    22 août 2022, par user19551045

    I am trying to use the -vf format="gray" in ffmpeg-python and I can't seem to get the syntax right. From what I have seen, ffmpeg-python has a set of filter_name options you can use, and then there is also the option to use .filter_() to just put in the ffmpeg commands directly in.

    


    I have tried using both and seem to get the same error, where ffmpeg-python wants me to declare a filter_name and from what I am seeing in the documentation, format=gray doesn't fall under any of the filter_name options.

    


    If I take this approach, it works :

    


    (
        ffmpeg.input(img_seq_template, framerate=framerate, **input_options)
        .filter("format", "gray")
        .output(filename=output_path, **output_options)
        .run(overwrite_output=True)
   )


    


    However, I want to also use a dictionary in the filter(), which then requires me to put in a filter_name. The goal would be to have something like below working :

    


    filter_options = {'format' : 'gray'}

(
        ffmpeg.input(img_seq_template, framerate=framerate, **input_options)
        .filter(filter_name = "some_filter_name", **filter_options)
        .output(filename=output_path, **output_options)
        .run(overwrite_output=True)
    )


    


    Any ideas on what I could put into the filter_name to get this running would be amazing ! All suggestions welcome, thanks so much !

    


  • avformat/argo_{asf,brp} : use variable frame sizes when (de)muxing adpcm_argo

    15 septembre 2020, par Zane van Iperen
    avformat/argo_asf,brp : use variable frame sizes when (de)muxing adpcm_argo
    

    Signed-off-by : Zane van Iperen <zane@zanevaniperen.com>

    • [DH] libavformat/argo_asf.c
    • [DH] libavformat/argo_brp.c
  • ffmpeg capture image two different sizes

    19 juillet 2013, par Leandro Garcia

    I can capture image from a video using ffmpeg :

    $cmd = "ffmpeg -i $video_source -an -ss $second -t 00:00:01 -r 1 -y -vcodec mjpeg -f mjpeg -s 40x25 " . escapeshellarg($video_thubmnail_destinaion) . " 2>&amp;1";

    However, using the above syntax will only output a 40x25 image. Is it possible that I can specify one more image size ?