Recherche avancée

Médias (2)

Mot : - Tags -/kml

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)

  • How to extract certain frames from a .yuv video file and create a new video using FFmpeg, OpenCV and python ?

    8 avril 2020, par Ann Baiju

    I have a .yuv video file and a list containing some frame numbers. I need to make a new video with the frame numbers in the list and another video with the frame numbers that are not on the list. How can I do this using FFmpeg and subprocess module in python ? I'm also using OpenCV in the program. I need the new videos in both .yuv and .avi formats.

    


  • Auto resize video with ffmpeg based on input video resolution

    12 mai 2018, par Masoud Mohammadi

    I wrote a Bash script to convert all video files in a directory. Some videos are 1280 x 720 resolution, and others are 720 x 1280.

    How can I write a ffmpeg command that converts 1280 x 720 videos to 640 x 360 and 720 x 1280 videos to 360 x 640 ?

  • How to speed up processing for FFmpeg video overlay on a video source file in Android ?

    28 décembre 2017, par Iffat Fatima

    I am working on an Android application to add a video file as an overlay on another video file, along with adding an audio stream to it, using FFmpeg library for Android.

    I am using the following command to apply the overlay, but for a video of 2 seconds, it takes 55 seconds to process. Is there a way to speed up this process ?

       String[] complexCmd = new String[]{ "-y",    
               "-i",              
               originalVideoPath,        
               "-i",              
               overlayVideoPath ,      
               "-i",              
               audioPath,              
               "-filter_complex",  
               "[0:v]setpts=PTS-STARTPTS[top];[1:v]setpts=PTS-STARTPTS, scale="+newOverlayWidth+"x"+newOverlayHeight+",format=yuva420p,colorchannelmixer=aa=0.5[bottom];[top][bottom]overlay=shortest=1:x="+left+":y="+top+"" ,
               "-c:v",
               "libx264",
               "-preset",
               "ultrafast",
               "-crf",
               "28",  
               "-map",  
               "2:a",  
               "-shortest",
               destVideoPath,
       };