Recherche avancée

Médias (1)

Mot : - Tags -/publier

Autres articles (104)

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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (11280)

  • Using FFMPEG on Google Cloud Platform

    27 mars 2021, par itsSLO

    I'm storing audio files on Google Cloud Storage (through Firebase storage).

    



    I need to use FFMPEG to convert the audio file from stereo (two channels) to mono (one channel).

    



    How can I perform the above conversion on Google Cloud Platform ?

    



    Update :
I suspect one possibility is to use Google Compute Engine to create a virtual machine, install ffmpeg, and somehow gain access to the audio files.

    



    I'm not sure if this is the best way or even possible. So I'm still investigating.

    


  • Using FFMPEG on Google Cloud Platform

    11 mars 2017, par itsSLO

    I’m storing audio files on Google Cloud Storage (through Firebase storage).

    I need to use FFMPEG to convert the audio file from stereo (two channels) to mono (one channel).

    How can I perform the above conversion on Google Cloud Platform ?

    Update :
    I suspect one possibility is to use Google Compute Engine to create a virtual machine, install ffmpeg, and somehow gain access to the audio files.

    I’m not sure if this is the best way or even possible. So I’m still investigating.

  • changing background color after merging videos using ffmpeg

    27 juillet 2019, par S.T

    i am putting 2 movies side by side and i want to change the background color in the spaces that left near them.

    this command is taking 2 videos and placing then one on top the other. there is a gap between them and also margins from all sides. i want that all the gaps ( the rectangle that hosts the videos) will be in a specific color(it is now green, i think its the default)

    ffmpeg -threads 11 -i 1.mp4 -i 2.mp4 -i logo.png -filter_complex
    [0:v]pad=width=iw+20:height=ih+20:x=10:y=10:color=yellow[a];
    [1:v]pad=width=iw+20:height=ih+20:x=10:y=10:color=red[b];
    nullsrc=size=1080x1080[base];[a]setpts=PTS-STARTPTS,scale=666x500[top];
    [b]setpts=PTS-STARTPTS,scale=666x500[bottom];
    [base][top]overlay=207:35[tmp1];[tmp1][bottom]overlay=207:545[video];
    [0:a]apad[apa];[1:a]apad[apa1];[apa]
    [apa1]amix=inputs=2:duration=longest[audio];[2:v]scale=150:60[ovrl];
    [video][ovrl]overlay=227:55[videoandlogo] -map [videoandlogo] -map
    [audio] -b 10000k -t 11 out.mp4

    I want to change the default color to one that i decide. Thanks.