Recherche avancée

Médias (91)

Autres articles (106)

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

  • How to save fluent-ffmpeg output to URL ?

    10 avril 2024, par volume one

    I am using fluent-ffmpeg to process videos and I want to save the final output file to a remote URL, not on the local server.

    


    Here is the code :

    


       ffmpeg('/path/to/file.mp4')
      .videoCodec(VideoCodec)
      .audioCodec(AudioCodec)
      .format('mp4')
      .output('http://localhost:8080/output.mp4') // This does not work at all
      .output('output.mp4') // this works but saves file locally which I'm not allowed to do
      .run();


    


    How can I save the file directly to a remote location (that is, without saving it locally) ? I know you can stream the output using pipe, but I cannot use streams because then ffpmeg will not set the duration value of the file.

    


  • Android - Save image and video to mp4 [duplicate]

    8 avril 2017, par Brooks

    This question is an exact duplicate of :

    I have a surfaceview which my video is played on, I also draw shapes on top of that view/canvas. I want to save/export the canvas and mediaplayer as one mp4 file.

    According to this FFMPEG works I will be able to create a mp4 file from images. But in my case I draw to canvas, I can save the canvas as jpg, but I still sit with the problem of how to export/save mp4 and jpg together as one mp4 file.

    This link say that I can get the coordinates the image and ’merge’ image and mp4 together with ffmpeg.

    I have been struggling with this for some time, can anyone please point me in the right direction ?

    Thank you in advance.

  • how to generate video thumbnail in node.js and save it as a buffer ?

    4 septembre 2021, par Jourdelune

    I want to get the thumbnails of a video at half of it but I should not save the image in a file but get the buffer. I tested ffmepg
ffmpeg -ss 146 -i video.mp4 -y -an -t 4 source
but it does not propose to recover the buffer. Do you know a solution ?