Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (41)

  • 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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

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

Sur d’autres sites (7763)

  • Anomalie #3620 : Token de prévisualisation inconsistant selon que l’article est en cours de rédact...

    12 février 2017, par Jacques Bouthier

    J’ai aussi des soucis avec cette fonction de prévisualisation. Comme elle n’avait jamais fonctionné correctement j’avais rajouté dans mes_options.php
    define(’_PREVIEW_TOKEN’, true) ;
    Et du coup ça fonctionnait, mais que pour les articles en statut "proposé à la publication".

    Après discussion avec Rastapopoulos sur IRC j’ai désactivé le plugin mini-minibando, et dans un article en prévisualisation alors est apparu le bouton "Relecture temporaire" parmi les boutons d’admin.
    Et lorsqu’on clique sur ce bouton relecture temporaire ça génère bien un token.
    Mais l’url générée avec ce token est en 404.
    Et b_b semble bien avoir raison puisque si je désactive aussi le plugin bonux je n’ai plus ce bouton "Relecture temporaire"

    En ce qui me concerne je constate bien un problème (SPIP 3.2, php 7.06) ou tout au moins on pourrait améliorer le fonctionnement général...

  • 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

    


    def generate_frames(rtsp_url):
    cap = cv2.VideoCapture(rtsp_url)  # Замените на ваш RTSP URL

    while True:
        success, frame = cap.read()
        if not success:
            break

        # Кодируем кадр в JPEG
        ret, buffer = cv2.imencode('.jpeg', frame)
        frame = buffer.tobytes()

        yield (b'--frame\r\n'
               b'Content-Type: photo/jpg\r\n\r\n' + frame + b'\r\n')


    


    i vant to stop video and start in video tag
my html looks like this

    


      <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;

  • Need help transcoding Red5 RTMP stream to MPEG2-TS

    5 février 2014, par reyniraron

    Me and my friend are going to make live shows and for that purpose I have set up a Red5 server on my old 2006 Intel Core Duo Mac mini running Mac OS X Snow Leopard Server 10.6.8.

    I use Flash Media Live Encoder to broadcast to Red5's oflaDemo application and the stream works great, except for the fact that I want the stream to work with iOS.
    I am developing an app for it, but I still need to convert my stream to Apple's HTTP Live Streaming protocol for it to work.
    Can anybody help me convert the RTMP stream to MPEG2-TS, because that's the format that mediastreamsegmenter supports ? I already have Apple's HTTP Live Streaming Tools installed on the server, so the segmenter's not a problem.

    FFmpeg doesn't work, at least not with the code I found here. With it a always get an "Operation not permitted" error. Xuggler doesn't work, not even with a Linux box.
    Can anybody please help me ? I'd really, really appreciate it.

    -Reynir Aron