Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (70)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Diogene : création de masques spécifiques de formulaires d’édition de contenus

    26 octobre 2010, par

    Diogene est un des plugins ? SPIP activé par défaut (extension) lors de l’initialisation de MediaSPIP.
    A quoi sert ce plugin
    Création de masques de formulaires
    Le plugin Diogène permet de créer des masques de formulaires spécifiques par secteur sur les trois objets spécifiques SPIP que sont : les articles ; les rubriques ; les sites
    Il permet ainsi de définir en fonction d’un secteur particulier, un masque de formulaire par objet, ajoutant ou enlevant ainsi des champs afin de rendre le formulaire (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (8860)

  • avformat/matroskadec : don't infer display dimensions when DisplayUnit is not pixels

    7 juillet 2024, par James Almer
    avformat/matroskadec : don't infer display dimensions when DisplayUnit is not pixels
    

    The spec doesn't define a default value for other values of DisplayUnit.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/matroskadec.c
  • How to display a stream of mdat/moof boxes in VLC ? [closed]

    8 juillet 2024, par roacs

    I am trying to display a real-time video stream in VLC. The snag is that the real-time video that is being received is a stream of just the mdat and moof boxes of a fragmented MP4 file that is being recorded elsewhere. The initialization information (ftyp/moov) is not and will never be available in the real-time stream. There is also no audio.

    &#xA;

    I have access to initialization information (ftyp/moov) of a previously completed file and can use that to aid in the processing/streaming of the real-time mdat/moof boxes.

    &#xA;

    I am currently extracting the contents of the mdat box, splitting those up and packaging them in 188 byte MPEG-TS packets and multicasting them for VLC to pick up. And just as a shot in the dark, every 50 mdat's I am also packaging the SPS and PPS NALUs from the initialization information of the completed file and multicasting those in one MPEG-TS packet.

    &#xA;

    Input looks like this :

    &#xA;

      &#xA;
    • ...
    • &#xA;

    • mdat 1
    • &#xA;

    • moof 1
    • &#xA;

    • mdat 2
    • &#xA;

    • moof 2
    • &#xA;

    • ...
    • &#xA;

    • mdat N
    • &#xA;

    • moof N
    • &#xA;

    • ...
    • &#xA;

    &#xA;

    And my output looks like this :

    &#xA;

      &#xA;
    • ...
    • &#xA;

    • MPEG-TS 1 containing first 184 bytes of mdat 1
    • &#xA;

    • MPEG-TS 2 containing next 184 bytes of mdat 1
    • &#xA;

    • ...
    • &#xA;

    • MPEG-TS N containing last 184 bytes of mdat 1
    • &#xA;

    • MPEG-TS N+1 containing first 184 bytes of mdat 2
    • &#xA;

    • MPEG-TS N+2 containing next 184 bytes of mdat 2
    • &#xA;

    • ...
    • &#xA;

    • MPEG-TS N+M containing last 184 bytes of mdat 2
    • &#xA;

    • ...
    • &#xA;

    • MPEG-TS containing SPS and PPS NALU
    • &#xA;

    • ...
    • &#xA;

    &#xA;

    VLC gets the data but no video playback.

    &#xA;

    How do I process this input in order to get it to play in VLC ?

    &#xA;

  • Not able to display first frame of mp4 file

    23 juin 2024, par Jatin Parmar

    I am learning OpenCV from YouTube, and I just created a very basic program in Python.

    &#xA;

    import cv2 as cv&#xA;&#xA;sources = cv.VideoCapture("test.mp4");&#xA;&#xA;if not sources.isOpened():&#xA;    print("Failed to open video file");&#xA;else:&#xA;    print("video file opened successfully");&#xA;&#xA;win_name = "test"&#xA;cv.namedWindow(win_name)&#xA;&#xA;(has_input, frame) = sources.read()&#xA;if has_input:&#xA;    cv.imshow(win_name, frame[...,::-1])&#xA;    cv.waitKey(0)&#xA;&#xA;sources.release()&#xA;

    &#xA;

    But when I run the program, I have the following errors : I have tried Googling it, but I didn't find any working solutions.

    &#xA;

    [av1 @ 0x55e6dc8b0780] Missing Sequence Header.&#xA;[av1 @ 0x55e6dc8b0780] Missing Sequence Header.&#xA;[av1 @ 0x55e6dc8b0780] Missing Sequence Header.&#xA;[av1 @ 0x55e6dc8b0780] Missing Sequence Header.&#xA;[av1 @ 0x55e6dc8b0780] Missing Sequence Header.&#xA;[av1 @ 0x55e6dc8b0780] Missing Sequence Header.&#xA;[av1 @ 0x55e6dc8b0780] Missing Sequence Header.&#xA;[av1 @ 0x55e6dc8b0780] Missing Sequence Header.&#xA;[av1 @ 0x55e6dc8b0780] Missing Sequence Header.&#xA;video file opened successfully&#xA;[av1 @ 0x55e6dc97a7c0] Your platform doesn&#x27;t suppport hardware accelerated AV1 decoding.&#xA;[av1 @ 0x55e6dc97a7c0] Failed to get pixel format.&#xA;

    &#xA;

    here is the link of video&#xA;https://drive.google.com/file/d/1TgY5O6pFLU3eEGsvmU0LoAw6_I8kGM6s/view?usp=sharing&#xA;I have no idea how to fix this.

    &#xA;