Recherche avancée

Médias (91)

Autres articles (102)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (9434)

  • NVIDIA Version Outdated Error when mine is updated

    21 février 2021, par Agent Merlot

    I'm trying to encode stuff with my NVIDIA GeForce MX150 (Driver Version : 461.09).

    


    import os
os.system(f'ffmpeg -i "Cells at Work Season 2 - Episode 07 - English Subbed.mp4" -c:a copy -c:v hevc_nvenc "07.mp4"')

    


    Whenever I'm trying to run it, I'm getting this error.

    


    [hevc_nvenc @ 0000017a8bdf7e40] Cannot load nvEncodeAPI64.dll
[hevc_nvenc @ 0000017a8bdf7e40] The minimum required Nvidia driver for nvenc is 436.15 or newer
Error initializing output stream 0:0 -- Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height
Conversion failed!

    


    What bugs me is that it says that I need 436.15 or newer, and mine is 461.09. That means it should work, right ? Can anyone help ?

    


  • creating video from selected images using FFMPEG through command Line Android

    7 septembre 2016, par Raheel Mushtaq

    i am trying to make a video from selected images from command line using ffmpeg in android

    using this project as my source i m trying to make video

    this is the command i m trying to create video

      String[] ffmpegCommand = {ffmpegBin,
               "-y",
               "-qscale",
               "1",
               "-r", "" + frameRate,
               "-i", image1.getAbsolutePath(),
               "-t", "" + (((4) * 30) + 4), //"-s",heightwidth,
               "-i", image2.getAbsolutePath(),
               "-t", "" + (((4) * 30) + 4), //"-s",heightwidth,
               "-i", image3.getAbsolutePath(),
               "-t", "" + (((4) * 30) + 4), //"-s",heightwidth,
               "-i", image4.getAbsolutePath(),
               "-t", "" + (((4) * 30) + 4), //"-s",heightwidth,
               "-vcodec",
               "libx264",
               "-s",
               "640x480",
               outputFile.getAbsolutePath()};

    but the video created shows only 1st image and video is created of less than a second

    what is the problem in this statement ? and why only 1 image is shown in video ?

    sorry about my bad english

  • How do I make FFMPEG use localized strftime with drawtext ?

    3 décembre 2022, par Randy Michnovicz

    I'm trying to write a script to use FFMPEG to draw localized timestamps on a video, but I'm not having much luck.

    


    I can confirm I have the locale fr_FR.UTF-8 installed on my system by running the following command : LC_ALL=fr_FR.UTF-8 date

    


    However, the following command produces a 4 second video beginning with the string "Monday 28 November 2022 19:00:47 PST" on both my Mac and an Alpine Linux docker container :

    


    LC_ALL=fr_FR.UTF-8 ffmpeg -hide_banner -f lavfi -i color=size=1024x768:rate=25:color=black -c:v libx264 -c:a aac -filter_complex drawtext=expansion=normal:fontsize=18:fontcolor=white:box=1:boxcolor=black@0.5:text='%{pts\\:localtime\\:1669690847\\:%A %-d %B %Y %X %Z}' -t 4 -y out.mp4

    


    Does anyone know how to make it create strings with non-English text ?