Recherche avancée

Médias (0)

Mot : - Tags -/serveur

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (57)

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

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

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

  • FFMPEG read input from text file and filter complex from file at the same time

    28 août 2020, par Arindam Saha

    I am trying to send input media files from a text file instead of inline argument and filter complex from text file as well.

    


    Here is what I have done.

    


      

    1. I have created a text file and pushed all the input medias in te text file like,

      


      file 0.mp3
file 1.mp3
file 2.mp3
file 3.mp3
file 4.mp3
file 5.mp3
file 6.mp3
file 7.mp3
file 8.mp3
file 9.mp3

...


      


    2. 


    3. I also have created another text file called filter.txt and inject all the complex filter rules in that.

      


      [0]adelay=0|0,volume=207[0a];[1]adelay=111400|111400,volume=206[1a];[2]adelay=116300|116300,volume=205[2a];[3]adelay=122300|122300,volume=204[3a];[4]adelay=125600|125600,volume=203[4a];[5]adelay=128000|128000,volume=202[5a];[6]adelay=137800|137800,volume=201[6a];[7]adelay=149100|149100,volume=200[7a];[8]adelay=150400|150400,volume=199[8a];[9]adelay=151900|151900,volume=198[9a];[10]adelay=153300|153300,volume=197[10a];[11]adelay=190300|190300,volume=196[11a];[12]adelay=210000|210000,volume=195[12a];[13]adelay=222500|222500,volume=194[13a];[14]adelay=224400|224400,volume=193[14a];[15]adelay=226900|226900,volume=192[15a];[16]adelay=228700|228700,volume=191[16a];[17]adelay=236100|236100,volume=190[17a];[18]adelay=240000|240000,volume=189[18a];[19]adelay=251200|251200,volume=188[19a];[20]adelay=253400|253400,volume=187[20a];[21]adelay=256500|256500,volume=186[21a];[22]adelay=258800|258800,volume=185[22a];[23]adelay=263700|263700,volume=184[23a];[24]adelay=267500|267500,volume=183[24a];[25]adelay=272000|272000,volume=182[25a];[26]adelay=273500|273500,volume=181[26a];[27]adelay=276600|276600,volume=180[27a];[28]adelay=27920 ....


      


    4. 


    


    Both these 2 files as input individually works fine. However, if I try to pass both of them together the FFMPEG complains.

    


    ffmpeg -y -f concat -i tmp/input.txt -filter_complex_script tmp/filter.txt -map "[a]" tmp/out.mp3


    


    I get this error :

    


    Invalid file index 1 in filtergraph description 


    


    Any help is really appreciated.

    


  • How to create a slideshow using ffmpeg with the length of output file based on the audio file

    8 janvier 2018, par NPV

    I’m trying to create some videos from a certain photos and audio. I’ve been looking for something similar but haven’t figured out yet. My idea looks something like this.
    I have some photos, let’s name them a b c d e (all in jpg) and an audio file A.mp3 and an overlay image P.npg
    I want to create a slideshow with its length equal the audio file’s length. Photos in the slide can be place randomly. The overlay image is on top of the video.

    Can anyone help me with this ? Thank you guys so much.

  • Fetch an input file dynamically in a batch file to perform operations on it

    25 mars 2019, par Piyush — ,

    I have created a which uses to extract frames of a video to .jpg.

    ffmpeg -i sample.mp4  -r 5 E:\frames\createdFrames%%d.jpg

    It works completely fine and created the desired frames, however I want to give the sample video dynamically, i.e. pass it when the batch file is being executed.

    How can I pass the input file dynamically ?

    If possible, also discuss how to store the file dynamically, i.e pass the directory where I want to store the file when the batch is being executed.