Recherche avancée

Médias (0)

Mot : - Tags -/masques

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

Autres articles (56)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (8122)

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

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

    


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