Recherche avancée

Médias (91)

Autres articles (104)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (13366)

  • Set rtsp transport to TCP for openCV as in FFMPEG

    18 novembre 2016, par paty.r15

    I am interested in forcing ffmpeg to use TCP/IP instead of UDP for RTSP streaming, using openCV.

    I installed ffmpeg and Opencv3.0 WITH_FFMPEG=ON. I need to tell my openCV application to set the rtsp transport to TCP as I would in ffmpeg : ffmpeg -ss 5 -rtsp_transport tcp -i rtsp://camaras.corredorautomotriz.cl:554/live.sdp  -s 640x480  -aspect 16:9  -b:v 800k -r 24  video.flv

    Do you know how I could do this ? Maybe with a parameter in either FFMPEG or OPENCV at installation time or capture properties with cv::VideoCapture ?

    Thanks

  • how to distinguish between identical cameras in Libav/ffmpeg ?

    8 avril 2015, par user1810087

    i have two identical cameras connected to my pc. the cameras are videology 21K355usb (if someone need this information). i’m using Libav or ffmpeg (tested with both libs) to grab the cameras. my options in my c++ program are simply :

    format = "dshow"
    input = "video=Videology USB-C Camera"

    but i cannot distinguish between them. if i try to print out the list of devices, i get the following :

    $> ffmpeg -list_devices true -f dshow -i dummy

    [dshow @ 02597f60] DirectShow video devices
    [dshow @ 02597f60]  "Integrated Camera"
    [dshow @ 02597f60]  "Videology USB-C Camera"
       Last message repeated 1 times
    [dshow @ 02597f60] DirectShow audio devices
    [dshow @ 02597f60]  "Microphone (Realtek High Defini"

    as you can see, my videology camera appears as the same device, twice. the only thing i see so far, is the usb-port differse in the os-hardware properties. is it anyhow possible to destiguish between them ?

  • lavc : Introduce AVCodec internal capabilities

    11 mars 2015, par Vittorio Giovara
    lavc : Introduce AVCodec internal capabilities
    

    This field is designed for marking codec properties useful to lavc internals.
    Two internal capabilities are added :
    - FF_CODEC_CAP_INIT_THREADSAFE : codec can be opened without locks ;
    - FF_CODEC_CAP_INIT_CLEANUP : codec frees memory if initialization fails.

    • [DH] libavcodec/avcodec.h
    • [DH] libavcodec/internal.h
    • [DH] libavcodec/utils.c