Recherche avancée

Médias (91)

Autres articles (106)

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (9925)

  • Fix FSF address copy paste error in some license headers.

    14 mai 2011, par Diego Biurrun

    Fix FSF address copy paste error in some license headers.

  • Cannot play second sdp file with FFMPEG : Address already in use

    8 novembre 2017, par user1490563

    SUMMARY- iam not able to process two sdp files simultaneously on one machine. ffmpeg throws "bind failed : Address already in use"

    My aim to get an stream from webRTC ( via kurento ) and then trancode it to be sent to RTMP server. I was able to generate an dp file and it transcoded easily but second one gave an error - "Address already in use".

    What i have already tried -
    i have dynamically changed the video and audio port in both files so that ports do not overlap (files pasted at the end of question ).
    i was albe to see that while one stream was successfully getting transcoded,the other streams video and audio ports were blocked by the same FFMPEG instance running for the first one. I do not know why or how.
    Its possible that i may be doing some mistake.
    Requesting help. i will like to stream multiple live videos at the same time.

    first SDP file

    v=0
    o=- 0 0 IN IP4 127.0.0.1
    s=KMS
    c=IN IP4 127.0.0.1
    t=0 0
    m=audio 49170 RTP/AVP 97
    a=recvonly
    a=rtpmap:97 PCMU/8000
    a=fmtp:97 profile-level-id=1;mode=AAC-hbr;sizelength=13;indexlength=3;indexdeltalength=3;config=1508
    m=video 55000 RTP/AVP 96
    a=rtpmap:96 H264/90000
    a=fmtp:96 packetization-mode=1

    second SDP file :

    v=0
    o=- 0 0 IN IP4 127.0.0.1
    s=KMS
    c=IN IP4 127.0.0.1
    t=0 0
    m=audio 49171 RTP/AVP 97
    a=recvonly
    a=rtpmap:97 PCMU/8000
    a=fmtp:97 profile-level-id=1;mode=AAC-hbr;sizelength=13;indexlength=3;indexdeltalength=3;config=1508
    m=video 55001 RTP/AVP 96
    a=rtpmap:96 H264/90000
    a=fmtp:96 packetization-mode=1
  • BufferHow to get STDIN line color with JAVA using BufferedReader

    12 mai 2020, par Matan Marciano

    Im run FFplay process in my JAVA application and read his logs with BufferedReader.
I want to parse the logs to determine errors.
So I want to read the color for each line.
red for errors..
bufferedReader.readline() return the content, no any color code.

    



    Please advise.