Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (92)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (7059)

  • How to take RTSP stream from camera and redirect to UDP server sink with Python

    13 juillet 2021, par RiccardoB

    I am using Python in order to take a RTSP stream and now I want to push the streaming to a UDP server using a Python software as "proxy". So far I have written this code but I have no idea how to decode and view the video on the UDP server sink.

    


    import cv2
import socket
import numpy as np
import pickle

stream_source = "rtsp://192.168.10.XXX:554"
vcap = cv2.VideoCapture(stream_source)
socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
socket .connect(("127.0.0.1", 8780))
while(1):
    ret, frame = vcap.read()
    if ret:
        frame_array = np.array(frame)
        data_to_send = pickle.dumps(frame_array)
        socket.send(data_to_send)


    


  • Anomalie #4820 : Double chargement des css

    15 juin 2021

    C’est du à Firefox et au header Link envoyé oui.
    C’est hyper désagréable en debug dans Firefox.

    Refs :
    - https://developer.mozilla.org/fr/docs/Web/HTTP/Link_prefetching_FAQ
    - https://www.w3.org/TR/resource-hints/

    Symfony fait ça avec le composant Web Link :
    - https://github.com/symfony/web-link
    - https://symfony.com/doc/current/web_link.html

    Il faudrait regarder si : sf enlève la balise `` ou pas (je ne pense pas) du html et/ou si ça se comporte pareil dans FF et pourquoi sinon.

  • Anomalie #4820 (Nouveau) : Double chargement des css

    10 juin 2021, par JLuc -

    Sur plusieurs sites SPIP, l’inspecteur de Firefox (de même que des outils d’analyse de la cascade des chargements http) révèle que la css compilée compactée est chargée 2 fois. Le fichier har joint présente la cascade de spip.net où ça se produit aussi.

    Serait ce pas dû à compresseur_ecrire_balise_css_dist() qui insère

    1. <span class="CodeRay">    <span class="local-variable">$comments</span> .= <span class="string"><span class="delimiter">"</span><span class="content">span><span class="delimiter">"</span></span> . (<span class="local-variable">$media</span> ? <span class="string"><span class="delimiter">"</span><span class="content"> media='</span><span class="local-variable">$media</span><span class="content">'</span><span class="delimiter">"</span></span> : <span class="string"><span class="delimiter">"</span><span class="delimiter">"</span></span>) . <span class="string"><span class="delimiter">"</span><span class="content"> href='</span><span class="local-variable">$src</span><span class="content">' type='text/css' /></span><span class="delimiter">"</span></span>;
    2.     <span class="comment">// Envoyer aussi un entete http pour demarer le chargement de la CSS plus tot</span>
    3.     <span class="comment">// Link: /href.here/to/resource.html>;rel="stylesheet prefetch" </span>
    4.     <span class="local-variable">$comments</span> .= <span class="string"><span class="delimiter">"</span><span class="content">&lt;</span><span class="delimiter">"</span></span> . <span class="string"><span class="delimiter">"</span><span class="content">?php header('Link: &lt;' . url_de_base() . (_DIR_RACINE ? _DIR_RESTREINT_ABS : '') . '</span><span class="local-variable">$src</span><span class="content">>;rel=</span><span class="char">\"</span><span class="content">stylesheet prefetch</span><span class="char">\"</span><span class="content">'); ?></span><span class="delimiter">"</span></span>;
    5. </span></span>

    Télécharger