Recherche avancée

Médias (91)

Autres articles (63)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

Sur d’autres sites (11683)

  • FFMPEG Combine a list of jpg with mo3 audios to sepatated videos on batch [closed]

    20 septembre 2020, par Francisco Barrod

    i have a big list of jpg and mp3 files. each of them have identical names but they not enumerated. example cat.jpg and cat.mp3 pig.jpg and pig.jpg i want to make videos cat.mp4 pig.mp4

    


    i have a code to do this manually but i want to make it on batch. heres my code

    


    ffmpeg -loop 1 -i cat.jpg -i cat.mp3 -threads 8 -shortest -c:v libx264 -c:a copy cat.mp4  


    


    its simple but works for my need.

    


    need help to make it on batch-

    


    thanks in advance.

    


  • Add 2 seconds of blank/black video with ffmpeg

    22 avril 2016, par user3076099

    Let’s say I have two videos I want play simultaneously. movieA.mp4 is 38.6 seconds duration, and movieB.mp4 is 31.14 seconds duration. Using ffmpeg is there an easy way to fill the end of movieB.mp4 with black silence so that it is exactly 38.6 seconds (matching movieA.mp4). There’s a very niche technical reason I want to do this, so don’t ask haha !!

    Also if possible, but less important, a way to remove this afterwards.

    Been searching for 2 days for any sort of easy way around this without luck !!!

    Thanks so much in advance !

  • WebRTC Video Track to ffmpeg in Node

    15 mai 2021, par Marcos López

    I have succesfully managed to establish a WebRTC connection between Node (server) and a browser. Server gets the video track on onTrack callback inside the RTCPeerConnection. Is there any way I can potentially convert the video track and make it work on ffmpeg so I can output it to rtmp.

    


    Thanks in advance.