Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (95)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Installation en mode standalone

    4 février 2011, par

    L’installation de la distribution MediaSPIP se fait en plusieurs étapes : la récupération des fichiers nécessaires. À ce moment là deux méthodes sont possibles : en installant l’archive ZIP contenant l’ensemble de la distribution ; via SVN en récupérant les sources de chaque modules séparément ; la préconfiguration ; l’installation définitive ;
    [mediaspip_zip]Installation de l’archive ZIP de MediaSPIP
    Ce mode d’installation est la méthode la plus simple afin d’installer l’ensemble de la distribution (...)

Sur d’autres sites (4353)

  • Im new to batch automation and ffmpeg. How would I delete a file after a remux has been completed using a batch automation file ?

    9 août 2024, par Voidmaster01

    Ive already automated the process of remuxing to a new file even with new names and all, but how would i go about deleting the original file after the process is completed. currently if i were to run the batch file it would supposedly delete the original file as it was starting the remux, also the remux can take anywhere from a couple of seconds to a couple of hours due to file sizes.

    


    I havent tried the deletion portion yet as i do not want to lose the file

    


  • aacenc_tns : disable coefficient compression by default

    17 octobre 2015, par Rostislav Pehlivanov
    aacenc_tns : disable coefficient compression by default
    

    Too much effort and work has been spent on such a simple function.
    It simply refuses to work as the specifications say, the
    transformation is NOT lossless and creates some crackling and
    distortions.
    Therefore disable it by default and add a couple of warnings to
    scare people away from touching it or wasting their time the
    way I did.

    • [DH] libavcodec/aacenc_tns.c
  • Use ffmpeg to create a video/audio file of X length, and then add audio/video sequences from multiple other files

    9 novembre 2015, par robert paré

    I have several mp4 files that contain video and audio content ("base" videos)

    I have a length value (recordingLength) in which the output video should be (let’s say 3600 seconds).

    I have to take clips from the "base" videos, at specific times and of specific duration.

    What I’m trying, is first creating a blank file with the total length (recordingLength) of 3600 seconds. I do it like so :

    ffmpeg -f lavfi -i anullsrc -t 3600 -c:a libfdk_aac ./output.mp4

    Then let’s say I have 5 base videos each lasting a couple of minutes, and I need to take a short segment from each of them (20-30 seconds) at a specific time, and then merge that segment at a specific time in the blank file created above. I tried playing around with -itsoffset {seconds} -t {seconds} but I’m still really just playing around trying to get my head around all the options.