Recherche avancée

Médias (91)

Autres articles (71)

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

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

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

  • ffmpeg running as a background task [duplicate]

    18 mars 2021, par Colby Quinn

    I am trying to get ffmpeg to run as a background task in linux, I have been trying to do it like this

    


    ffmpeg -i input.mkv -loglevel panic output.mp4 &


    


    But whenever I run the program it halts in the beginning until I put it as a foreground task fg $1 and then I can leave the task and it runs in the background just fine, how can I make it run from the beginning as a background task without having to put it as a foreground task temporarily ?
I have also tried this and it didn't work

    


    ffmpeg -i input.mkv -loglevel panic output.mp4 2> /dev/null &


    


  • Removing files between hours of 6:00pm - 6:00am from a folder ?

    27 juin 2016, par Matthew Briney

    I have a folder of images that were taken from a video stream that runs 24/7. I’m using ffmpeg to turn them into a time-elapsed video but I would like to strip out all of the files that were created between the hours 6:00pm - 6:00am each day.

  • Resume encoding or re-encoding video after a power loss in ffmpeg

    2 août 2018, par Bhupendra Pandey

    I have a php script that reads from database and converts videos using ffmpeg.

    Sometimes the power goes off and my server turns of suddenly.

    What should I do to re-encode the video that was being converted while the power loss occurred ?

    The whole process should be automatic.