Recherche avancée

Médias (1)

Mot : - Tags -/stallman

Autres articles (58)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (13366)

  • Overlaying alpha images on a video using ffmpeg

    10 mai 2016, par neuro_sys

    I have the following ffmpeg-cli command which does not produce the described effect in documentation. Could this be a bug, or I have something wrong with the command.

    ffmpeg \
       -y \
       -i small.mp4 \
       -i monkey/monkey_%04d.png \
       -filter_complex "[0:v][1:v]overlay=enable='between(t,1,5)'[out1]" \
       -map '[out1]' \
       output.mp4

    I expect it to overlay the #1 stream on top of #0 between seconds 1 and 5.

    You may download the test tarball from this link :

    It includes assets for the test case.

    The build I tried with :

    • ffmpeg-3.0.2-64bit-static (available online)
  • ffmpeg 'av_seek_frame()' not work in bink video

    19 juillet 2020, par ghoflvhxj

    I trying to use ffmpeg, to play video in my game.

    


    when i open .avi file 'av_seek_frame()' work fine.
but if change to .bik file, it never work.
the function just return 0(which mean success) and seek to start.

    


    anyone who know about this problem ? :(
please tell me why...

    


    i uploaded sample player and video.
this use ffmpeg and call av_seek_frame to seek like my program.
check it please.
https://drive.google.com/file/d/1DVrX3EOzjxSfEA4EYpeSREaE2RLhB28Q/view?usp=sharing

    


  • How to generate video preview thumbnails for use in VideoJS ?

    30 octobre 2019, par steven

    I moved over to VideoJs (html5) and need to figure out how to generate thumbnails for the seekbar. I have tried using videojs-thumbnails, however that requires having a preloaded vtt file with a sprite image. I’m trying to figure out a way to automatically load thumbnails for a regular mp4 (h264) file. Flowplayer was able to do this with it’s own videos, trying now to figure out how to do it with VideoJs.

    I was hoping their was some plugin that I missed that was capable of doing this, but have yet to find it. The best I figured out was to extract the thumbnails from the mp4 file, combine it into a sprite image, and use the #xywh attribute.

    If there is no plugin that automatically does this in VideoJS, what command line program can I use to create a VTT file with sprite image on Ubuntu ? I am dealing with lots of video files, so doing it manually just isn’t feasible.

    My video player :

      <div class="video_player_js" style="width:auto; height:auto;">
     <video class="vjs-16-9 video-js vjs-default-skin vjs-big-play-centered" controls="controls" preload="auto" width="auto" height="auto" data-setup="{&quot;fluid&quot;: true}">
       <source src="test.mp4" type="video/mp4"></source>
       <track kind="metadata" src="thumbnails.vtt"></track>
       <p class="vjs-no-js">To view this video enabled Javascript.</p>
     </video>
    </div>

    Sample vtt file :

    WEBVTT

    00:00:00.000 --> 00:00:03.000
    thumbnails.jpg#xywh=0,0,120,68

    00:00:03.000 --> 00:00:06.000
    thumbnails.jpg#xywh=120,0,120,68

    00:00:06.000 --> 00:00:09.000
    thumbnails.jpg#xywh=240,0,120,68