Recherche avancée

Médias (91)

Autres articles (73)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

Sur d’autres sites (8628)

  • Rendering list of images over a video with ffmpeg does not work if video has audio

    12 mai 2023, par Alex Stirken

    I'm using FFmpegKit for Flutter to render a list of changing images onto a video.
Im using the following arguments :

    


    final arguments = [
  '-y',
  '-i', inputVideoPath,
  '-framerate', '$fps',
  '-start_number', '100',
  '-i', '${tempDirectoryPath}/%3d.png',
  '-filter_complex', '[1:v]scale=720:1280 [ovrl]; [0:v][ovrl]overlay=0:0,format=yuv420p[v]',
  '-map', '[v]',
  '-c:v', 'libx264',
  "-preset", "medium",
  '-pix_fmt', 'yuv420p',
  '-shortest',
  '$outputFilePath'
];


    


    It works like a charm as long as the video file (.mp4) has no audio stream. If the video has an audio stream, only the first image is getting rendered (overlayed) over the video.

    


    Any suggestions ?

    


  • Create time lapse video from other video

    17 décembre 2023, par Orlando

    Using avconv (or even ffmpeg, so I can use as a reference), how can I create a time lapse video by taking only anchor/reference frames from another video ? Most information I find is on how to create a time lapse video by combining images, and I'd like to do it by extracting frames from a video. Say, if a video is 30 seconds long at 30 FPS, I'd like to take 60 out of those 900 frames (900/60 = every 15 seconds) to produce a 2 second video.

    


  • Create time lapse video from other video

    27 janvier 2017, par Orlando

    Using avconv (or even ffmpeg, so I can use as a reference), how can I create a time lapse video by taking only anchor/reference frames from another video ? Most information I find is on how to create a time lapse video by combining images, and I’d like to do it by extracting frames from a video. Say, if a video is 30 seconds long at 30 FPS, I’d like to take 60 out of those 900 frames (900/60 = every 15 seconds) to produce a 2 second video.