Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (110)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

Sur d’autres sites (2484)

  • libavfilter/vf_dnn_detect : Add input pad

    12 décembre 2023, par Wenbin Chen
    libavfilter/vf_dnn_detect : Add input pad
    

    Add input pad to get model input resolution. Detection models always
    have fixed input size. And the output coordinators are based on the
    input resolution, so we need to get input size to map coordinators to
    our real output frames.

    Signed-off-by : Wenbin Chen <wenbin.chen@intel.com>
    Reviewed-by : Guo Yejun <yejun.guo@intel.com>

    • [DH] libavfilter/dnn/dnn_backend_openvino.c
    • [DH] libavfilter/vf_dnn_detect.c
  • View the incoming live mpeg stream from python socket

    19 janvier 2017, par ITried

    So I have an Intel Edison microcontroller running Linux that has a usb cam attached to it. It has a python script that uses ffmpeg to send the mpeg stream to a specific ip:port. I have another ’server’ script on my computer that opens a basic socket and binds on that port. The stream is clearly transferring because when I receive on the server, I print to terminal and all this gibberish and outputs. My question is how can I use ffmpeg or OpenCV (or anything else really) to receive from this port and view it real time ?
    On the Intel Edison, this command transmits data :

    os.system("/home/root/bin/ffmpeg/ffmpeg -s 640x480 -f video4linux2 -i /dev/video0 -f mpeg1video -b 800k -r 30 http://myip:8082")

    On the ’server’ side this the basic socket for binding and receiving.

    s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    s.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
    s.bind(('',8082))
    s.listen(1)
    conn, addr = s.accept()
    print "Connected to:", addr
    while True:
       data = conn.recv(1024)
       if data:
           print data

    I want to be able to view the incoming stream live, capture images, or save to video file. I tried looking online, but have not found any for live stream capture through python socket.

    thanks in advance !

  • lavfi/tonemap_vaapi : Add support for HDR to HDR tone mapping

    18 mars 2024, par Xinpeng Sun
    lavfi/tonemap_vaapi : Add support for HDR to HDR tone mapping
    

    Usage example :
    ffmpeg -y -hwaccel vaapi -hwaccel_output_format vaapi -i hdr.mp4 \
    - vf "tonemap_vaapi=display=7500 3000|34000 16000|13250 34500|15635 16450|500 10000000:extra_hw_frames=64" \
    - c:v hevc_vaapi output.mp4

    Signed-off-by : Xinpeng Sun <xinpeng.sun@intel.com>
    Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>

    • [DH] doc/filters.texi
    • [DH] libavfilter/vf_tonemap_vaapi.c