Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (102)

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

  • Can you convert a video to an audio file in python without saving to a file ?

    31 janvier 2017, par user2983738

    For a python web project I receive a video file through a flask interface.
    Now to do analysis, I need to extract the audio file from it.

    Problem is that I can’t save the video to file first, which seemingly eliminates using ffmpeg as it requires a link to a file location.

    Are there any python solutions that would allow me to pass and return audio/video files using objects only ?

    Thank you in advance

  • Issue with ffmpeg ubuntu

    12 octobre 2017, par Rahul Agnihotri

    I am getting below given error while trying to use ffmpeg :

    video:45kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead : unknown

    The command i am executing is as follows :
    sudo ffmpeg -i /home/agnihotri/Downloads/1.mp4 -vf fps=1/600 /home/agnihotri/positive/img%03d.jpg

    My objective to extract or save a image every 10 seconds...however it only works for initial 30 seconds and then gives the error or issue.

    Thanks in advance.

    Rahul Agnihotri

  • ffmpeg extract video frames from url to a local variable in Node

    8 octobre 2020, par FireBrand

    I'm using the Nodejs spawn() functionality to execute a shell command that goes like this :

    


    ffmpeg -i https://someUrl.com/someVideo.mp4 -vf fps=30 frame-%d.bmp


    


    Which works for me as to saving 30 frames per second into numbered files, but I'd like to save every frame into a local variable so I could parse it in whatever way I need to (specifically to a JSON).

    


    What would be the best way to do so ?

    


    Thanks in advance.