Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (78)

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

  • When concatenating videos With FFMPEG, the audio becomes out of sync (python)

    22 juin 2022, par Funny Fights

    So I have a txt file like this with a path to all my videos :

    


    file 'video1.mp4'

    


    file 'video2.mp4'

    


    file 'video3.mp4'

    


    and I want to combine them into one big video :

    


    I am using in python :

    


    ffmpeg -f concat -safe 0 -re -i txtfile.txt -c copy concatenatedvideo.mp4

    


    But the concatenatedvideo.mp4 ends up having the video and audio become out of sync.

    


    How do I make it so the videos simply combine and keep their audio as it was, instead of becoming out of sync ?

    


  • Storing large videos on the Server

    14 novembre 2019, par civ15

    In my application the client is uploading relatively large videos, average is 500 MB. I have to encode the video in the backend to reduce the size, and I’m trying to use ffmpeg for that. However, ffmpeg needs around 10 minutes for each video, and I should be able to serve the video to the client instantly, or, at least in a few seconds after the upload is finished.

    What would be the best practice in this context ?

  • How to make fade in/out effect between concatenate videos using ffmpeg

    7 février 2018, par no name

    I have three videos which divide into three parts on is the start then main video then end of the video in which I concatenate them together I want to add fade in/out effect at the end of the first video and at the start of the third video so they are separated nicely to the viewer.
    i used this code to concatenate the video together by adding videos name to the text file

    ffmpeg -f concat -i ffmpeg-sound.txt -c copy final_output.mp4

    now what command should i pass so i can add this effect as iam not good at ffmgep. or if there is any other things to follow.
    Thanks in advance