Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (72)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • 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 (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (4243)

  • avfilter/vf_scale : set correct AVFrame SAR if reset_sar=1

    16 juin, par Niklas Haas
    avfilter/vf_scale : set correct AVFrame SAR if reset_sar=1
    

    This otherwise generates an inconsistency between the frame state and the
    link state, since the link state is set to 1:1 explicitly when `reset_sar`
    is enabled, but this line of code unconditionally overwrote the output
    frame SAR with the value that would be computed in the absence of `reset_sar`.

    cf. vf_scale_cuda, which does this correctly

    • [DH] libavfilter/vf_scale.c
  • avcodec/ppc/mpegvideo_altivec : Use correct inter scantable

    22 mars, par Andreas Rheinhardt
    avcodec/ppc/mpegvideo_altivec : Use correct inter scantable
    

    This affected the WMV1/2 encoders (but not when running FATE because
    the encoding part uses the fastint dct, so this code isn't used
    then anyway).

    It did not affect anything else, because a) only WMV1/2 use different
    scantables, b) ff_msmpeg4_decode_block() (and therefore the WMV1
    decoder) already unquantize inter macroblocks as they are parsed
    c) the WMV2 decoder does not use the unquantize functions for inter
    macroblocks at all.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/ppc/mpegvideo_altivec.c
  • How can I make an rtsp stream as correct as possible in a Django application ? [closed]

    4 décembre 2024, par user25336067

    I am writing a mini video surveillance system on Django. I want the stream to be output to the tag. now I have output to the img tag using a stream and jpeg images (using OpenCV)how to make a stream from a video, you may need to use WebRTC for the stream and somehow decode the video using ffmpeg, please tell me

    &#xA;

    def generate_frames(rtsp_url):&#xA;    cap = cv2.VideoCapture(rtsp_url)  # Замените на ваш RTSP URL&#xA;&#xA;    while True:&#xA;        success, frame = cap.read()&#xA;        if not success:&#xA;            break&#xA;&#xA;        # Кодируем кадр в JPEG&#xA;        ret, buffer = cv2.imencode(&#x27;.jpeg&#x27;, frame)&#xA;        frame = buffer.tobytes()&#xA;&#xA;        yield (b&#x27;--frame\r\n&#x27;&#xA;               b&#x27;Content-Type: photo/jpg\r\n\r\n&#x27; &#x2B; frame &#x2B; b&#x27;\r\n&#x27;)&#xA;

    &#xA;

    i vant to stop video and start in video tag&#xA;my html looks like this

    &#xA;

      <div class="video-container">&#xA;    <img src="http://stackoverflow.com/feeds/tag/{% url &#38;#x27;video_feed&#38;#x27; %}?rtspurl={{ rtsp_url }}" width='300' height='225' alt="{{ rtsp_url }}" />&#xA;    <div class="separator"></div>  &#xA;    <p class="cam-name">Трансляция камеры: {{ cam_name }}<br />RTSP: <a>{{ rtsp_url }}</a></p>&#xA;  </div>&#xA;

    &#xA;