Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (54)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

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

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

Sur d’autres sites (3851)

  • How to run ffmpeg on heroku-18 stack ?

    22 octobre 2020, par piotrkot

    I have a Java web app on Heroku. It's on heroku-18 stack with heroku/java buildpack.

    



    I need to compress some videos and due to the lack of such libraries for Java decided to install FFmpeg on Heroku.

    



    Adding FFmpeg buildpacks like https://github.com/kontentcore/heroku-buildpack-ffmpeg, https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest was successful as FFmpeg was installed but they failed when running because of various linking problems.
For that I tried to add heroku-community/apt buildstack. My Aptfile file contains just the ffmpeg package.

    



    Still I'm getting
ffmpeg: error while loading shared libraries: libpulsecommon-11.1.so: cannot open shared object file: No such file or directory

    



    FFmpeg command that I try to run from the Java code is simple :
ffmpeg -i video.webm video-compressed.webm

    



    Am I missing something ?

    


  • Can anyone tell me ffmpeg.wasm command to converting 24-bit color image to 8-bit color image without affecting transparency part ?

    4 avril 2024, par Rohit Nayak

    I am a new developer and currently developing a png compressor to compress png image file using next.js 14 app directory and I found the right command to do so

    


    ffmpeg -i input.png -c:v png -pix_fmt pal8 -vf "split[a][b];[a]alphaextract[am];[b]palettegen=stats_mode=diff[pl];[b][pl]alphamerge" output.png


    


    but i am unable to do so because I don't know how to convert that to ffmpeg.wash command.

    


    I am using node.js v20.11.0, @ffmpeg/ffmpeg version 0.12.6 and @ffmpeg/util 0.12.1", alone with @ffmpeg/core@ version 0.12.2 which seems to work well.

    


    My code is as following :

    


        ffmpeg.exec([
      "-i",
      `${file.name}`,
      "-c:v",
      "png",
      "-pix_fmt",
      "pal8",
      "-vf",
      "split[a][b];",
      "[a]alphaextract[am];",
      "[b]palettegen=stats_mode=diff[pl];",
      "[b][pl]paletteuse=new=1:alpha_threshold=128",
      `output.png`,
    ]);


    


    Is there anyone who can solve this problem ?
An early action will highly be appreciated😊

    


    Answer in the form of

    


    ffmpeg.exec([...commands ]) 


    


  • Questions about license of ffmpeg in Android [on hold]

    23 décembre 2016, par Season

    I want to make an video editing app(may include advertisement or even earn money).

    And I found that ffmpeg is a great library for my app.

    And I can use it for compress video, trim video and change video format.

    The commands that the app may use :

    Reducing video size with same format and reducing frame size

    Cutting the videos based on start and end time using ffmpeg

    I found that ffmpeg is using LGPL and partially GPL licenses but I do not familiar with these two terms.

    What should I do so that I can use ffmpeg legally ?