Recherche avancée

Médias (91)

Autres articles (76)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

Sur d’autres sites (14577)

  • FFPlay - SDP Could not find codec parameters

    4 mars 2016, par LostBoy

    I’m using the FFMpeg development libraries to generate an embedded application streaming camera images via RTP. My current example is based on the muxing.c example from FFMpeg 2.7.
    I use the av_sdp_create to dump the SDP before avformat_write_header and the program streams RTP packets indefinitely afterwards. With a little work, I’m able to extract a video file from packets received on the destination in Wireshark.

    The content of the generated SDP is :

    v=0
    o=- 0 0 IN IP4 127.0.0.1
    s=No Name
    c=IN IP4 224.1.1.1
    t=0 0
    a=tool:libavformat 57.25.100
    m=video 5555 RTP/AVP 96
    b=AS:400
    a=rtpmap:96 MP4V-ES/90000
    a=fmtp:96 profile-level-id=1

    However, when I try to receive the video with ffplay, I get the following messages :

    [sdp @ 0xb0400480] Could not find codec parameters (Video: mpeg4, yuv420p)
    [sdp @ 0xb0400480] Estimating duration from bitrate, this may be inaccurate
    test.sdp: could not find codec parameters

    Is there anything missing in this SDP ?

    I also tried to receive the stream with VLC with the same depressing result. I also tried to use other codecs (mainly MPEG2VIDEO) during transmission, the received RTP packets seem correct in Wireshark, but playback also fails. I am at a loss about the SDP.

  • Find bytes range of webm video for specified segment

    21 mai 2024, par M2sh

    I have a Video in webm format (like video.webm the duration is 60 seconds)
    
I want to get specified segment of video (i.e split video) with http header range (Range : 100-200).
    
In another word :
    
I want to get a section of video (e.g. from second 4 to 12) but I don't want to use any converter like ffmpeg. I want to send http request to server and get specified range of webm file.

    


    Can I use this method (http range header) ?

    


    Thanks

    


  • How to find the loudness of an audio buffer in Node.js ?

    10 mai 2024, par Parshant Khichi

    I have a buffer containing audio data representing a voice recording, and I need to determine its loudness in Node.js. I tried using the fluent-ffmpeg library, as it seemed to offer functionality for audio analysis. However, my attempts to use it to analyze the loudness of the audio buffers were unsuccessful.
Could someone please suggest a reliable approach or provide a code example to help me analyze the loudness of the audio buffers accurately in Node.js ? Any guidance or assistance would be greatly appreciated.