Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (79)

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

  • Hot to copy frame data from FFmpegSource2 (FFMS2) FFMS_Frame struct to OpenCV Mat ?

    4 octobre 2013, par Yashil

    I'm trying to read video file using FFmpegSource2 (FFMS2) and then process frames using OpenCV. What is the proper and efficient way to copy frame data from a FFMS_Frame struct returned by FFMS_GetFrame function to an OpenCV Mat ?

    Thank you very much in advance.

  • FFmpeg : How to change tempo dynamically

    25 octobre 2018, par Ankush

    I am working on an android project in which I need to change the tempo of an mp3 (50 seconds audio) file dynamically as shown :

         Time            |    Tempo
    ----------------------------------------------
         0-4             |     1.0    
                         |    
         4-8             | change form 1.0 to 0.5
                         |
         8-12            |     0.5
                         |
         12-16           | change from 0.5 to 1
                         |
         16-20           |     1
                         |
         20-24           | change from 1 to 1.5
                         |
         24-28           |     1.5
                         |
         28-32           | change from 1.5 to 1
                         |
         32-36           |     1
                         |
         36-40           | change from 1 to 1.5
                         |
         40-44           |     1.5
                         |
         44-48           | change from 1.5 to 1
                         |
         48-50           |     1

    I had searched and found that I can use atempo for this. But it changes the whole audio tempo. I think that I can split the audio and apply the effect but it also not work for this type of dynamic task. Please help me to find the solution. Thank you in advance :)

  • Scaling seems to crop edges of video

    7 septembre 2020, par Jao

    I'm doing some automation with FFmpeg and I need to be able to scale up and down videos. So I tried using the scale filter. No issue when I'm scaling up but when I'm scaling down I'm losing a few pixels from the bottom of the video and I must keep everything.

    


    Here is an example :

    


    $ ffmpeg.exe -i video.avi -vf scale=1536:644 video_resized.avi


    


    Here, video.avi is 2048x858.
I tried a lot of parameters, algorithms and flags but nothing seems to "fix" it. Maybe it is normal and I'm not understanding correctly how scaling works but I need to resize without loss of edges.
Thanks in advance