Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (82)

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

Sur d’autres sites (5419)

  • wtv : Speed up wtv index creation

    29 janvier 2016, par popcornmix
    wtv : Speed up wtv index creation
    

    The index creation is O(N^2) with number of entries (typically thousands).
    On a Pi this can take more than 60 seconds to execute for a recording of a few hours.

    By replacing with an O(N) loop, this takes virtually zero time

    Liked-by : Paul B Mahol <onemda@gmail.com>
    Reviewed-by : Peter Ross <pross@xvid.org>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/wtvdec.c
  • MLT Framework. How to speed up video ?

    16 septembre 2016, par user2455079

    Need to speed up video with MLT.
    I can do it with ffmpeg :

    -filter:v "setpts=0.5*PTS"

    But what about MLT ?

  • FFMPEG record http video stream with normal speed

    18 mai 2017, par user3119509

    I’m recording an http stream from my IP Camera (TPLINK NC200), using this command :

    ffmpeg -i http://admin:YWRtaW4=@192.168.0.18:8080/stream/getvideo -t 30 -acodec copy -vcodec copy abc.mp4

    As you can see , the video length is set to 30 seconds ( -t option ) . But it takes about 1 minute 30 seconds to record , and the video speed is very high ( the camera recording a stopwatch and a 30-second video recorded the timer to 1 minute and 11 seconds ).

    Is there some ffmpeg option to get a normal speed video ? Or the problem is the camera configuration ?