Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (25)

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

  • Installation en mode standalone

    4 février 2011, par

    L’installation de la distribution MediaSPIP se fait en plusieurs étapes : la récupération des fichiers nécessaires. À ce moment là deux méthodes sont possibles : en installant l’archive ZIP contenant l’ensemble de la distribution ; via SVN en récupérant les sources de chaque modules séparément ; la préconfiguration ; l’installation définitive ;
    [mediaspip_zip]Installation de l’archive ZIP de MediaSPIP
    Ce mode d’installation est la méthode la plus simple afin d’installer l’ensemble de la distribution (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (6294)

  • avconv : when using -loop option bail out if seek to start fails

    30 juin 2017, par Peter Große
    avconv : when using -loop option bail out if seek to start fails
    

    Fixes an infinite loop when a demuxer fails to seek to the start of the input.

    Signed-off-by : Peter Große <pegro@friiks.de>
    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DBH] avtools/avconv.c
  • How to capture multiple screenshot from youtube video using ffmpeg with specific seek time

    9 août 2017, par Md. Mehedi Hasan

    I’m using ffmpeg to take screenshot from youtube video. I want to seek multiple timeline. I’ve used the following command to capture 1 screenshot by seek command :
    ffmpeg -ss 00:02:10 -i "youtube-stream-url" -frames:v 1 out1.jpg

    How I can take multiple screenshot via multiple seek time. I’ve searched for the solution but no success.

    I’ve used the following command to take multiple screenshot as follows :
    ffmpeg -noaccurate_seek -ss 00:01:10 -i "youtube-stream-url" -map 0:v:0 -vframes 1 -f mpeg "thumb/output_01.jpg" -ss 00:02:10 -i "youtube-stream-url" -map 1:v:0 -vframes 1 -f mpeg "thumb/output_02.jpg"

    Is there any way to generate screenshots from same input via seek command ? How to make it more faster ? How to skip multiple input(-i param) ? I’ve also tried with other commands but those are more slower. Can anyone help me ?

  • How to capture multiple screenshot from online video stream using ffmpeg with specific seek time

    9 août 2017, par Md. Mehedi Hasan

    I’m using ffmpeg to take screenshot from online video stream. I want to seek multiple timeline. I’ve used the following command to capture 1 screenshot by seek command :
    ffmpeg -ss 00:02:10 -i "stream-url" -frames:v 1 out1.jpg

    How I can take multiple screenshot via multiple seek time. I’ve searched for the solution but no success.

    I’ve used the following command to take multiple screenshot as follows :
    ffmpeg -noaccurate_seek -ss 00:01:10 -i "stream-url" -map 0:v:0 -vframes 1 -f mpeg "thumb/output_01.jpg" -ss 00:02:10 -i "stream-url" -map 1:v:0 -vframes 1 -f mpeg "thumb/output_02.jpg"

    Is there any way to generate screenshots from same input via seek command ? How to make it more faster ? How to skip multiple input(-i param) ? I’ve also tried with other commands but those are more slower. Can anyone help me ?