Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (52)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

Sur d’autres sites (5900)

  • How to get a .bat file to process multiple videos ?

    29 avril 2019, par L J

    I’m simply trying to generate screen captures (every 2 seconds) from a large folder of videos. I already have code which works when I drag a single file onto it :

    "c:\program files\ffmpeg\bin\ffmpeg.exe" -i %1 -vf fps=fps=1.0/2.0 -qscale:v 2 "%~n1 - %%05d.jpg"
    pause

    But this doesn’t work when I drag multiple videos onto it.

    I have a poor understanding of ffmpeg scripting, so could anyone please give me the exact code to make this work ?

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