Recherche avancée

Médias (1)

Mot : - Tags -/remix

Autres articles (98)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (6424)

  • Anomalie #4220 : Articles qui changent de langues

    12 novembre 2018, par denis -

    Salut, voici déjà plus d’infos sur un site où ça survient régulièrement. Je ne sais pas d’où vient le bug, directement de spip où d’un des plugins listés ci-dessous. C’est évidemment difficile de reproduire le bug dans un site nu vu qu’il ne survient sans doute après une opération spécifique qui ne se produit que tout les x semaines.

    Est-ce qu’il serait possible dans un premier temps de logger toutes les requêtes sql ? Pour pouvoir tracer l’origine du problème.

    SPIP 3.2.1 [23954]

    Abonnement à des listes de diffusion 1.1.12 - stable
    Agenda 3.18.7 - stable
    Champs Extras 3.11.5 - stable
    Facteur 3.5.2 - stable
    Ma lettre 3.3.6 - stable
    MailShot 1.23.0 - stable
    MailSubscribers 2.7.1 - stable
    Menu de langues avec liens 1.3.3 - stable
    Metas + 1.2.8 - stable
    Métadonnées pour Open Graph, Duclin Core et Twitter
    Mini Calendrier 2.4.1 - stable
    Newsletters 1.5.3 - stable
    NoSPAM 1.5.18 - stable
    oEmbed 2.0.5 - stable
    Saisies pour formulaires 2.24.3 - stable
    Sedna 1.3.5 - stable
    Agrégateur RSS
    SPIP Bonux 3.4.6 - stable
    Traduction d’articles autrement 1.4.3 - stable

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

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