Recherche avancée

Médias (5)

Mot : - Tags -/open film making

Autres articles (103)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

Sur d’autres sites (11714)

  • Building a backend that processes (& renders) videos [closed]

    26 mai 2020, par nils
      

    • How would I go about creating an endpoint to merge Sound-Files and Images/GIFs into an mp4 Video in a Node backend ?
    • 


    • Is there a simple library for that or would I have to use ffmpeg commands ?

    • 


    • Right now I set up my database using Cloud Firestore - would it make sense to later on publish the whole backend onto Firebase ?

    • 


    



    Essentially I'd like to have a platform that allows people to upload music onto YouTube (So videos with sound and preferably animated videos, so not just still images).

    


  • FFmpeg - Commands to convert videos to be played on Android devices

    22 février 2016, par Alireza

    I have to convert videos on the server-side to have a good video streaming just like what Instagram does. Videos must be played without any problem on Android devices (API 16+) from URL.

    Note : Native Android MediaPlayer cannot play some videos.

    The currently command that I’m using is : -profile:v Main -level 3.0 -ar 44100 -ac 1 -b:a 64k -b:v 500k -s 640x640 -r 25 -ar 44100

    The question is, what is the best commands to reach my goal ?

  • How to Merge prores videos [duplicate]

    14 mars 2021, par FangHe

    I have two prores mov files.
I tried to merge two videos without re-encoding using ffmpeg concat.

    


    ffmpeg -i "concat:video1.mov|video2.mov" -c copy output.mov

    


    output.mov is like video1.mov. didn't merge two videos.

    


    Please give me solution.
Thank you