Recherche avancée

Médias (33)

Mot : - Tags -/creative commons

Autres articles (74)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (7732)

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

    


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

  • What is the fastest method to compress videos before sending in React Native Chatting app

    2 août 2021, par Jawad Chawich

    So my question is mainly in the title, I'm working on a chatting app and I have to compress the videos before sending to the database (firebase storage). All I could find till now is ffmpeg, but the issue is that it's taking tremendous amount of time to compress videos, for a 10 sec video it would take like a minute, and i was astonished how fast it's done in whatsapp.. so is there any other method to compress videos faster ? Or does changing the ffmpeg command make an acceptable difference ? the currently used command is "-y -i $rVideoUrl -c:v libx264 -crf 28 -preset ultrafast $finalVideo"