Recherche avancée

Médias (91)

Autres articles (61)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

  • avfilter/vf_readeia608 : check if gaps between clock bits are big enough

    23 décembre 2019, par Paul B Mahol
    avfilter/vf_readeia608 : check if gaps between clock bits are big enough
    

    Should help finding less false positives.

    • [DH] libavfilter/vf_readeia608.c
  • dca_parser : Extend DTS core sync word and fix existing check

    29 avril 2015, par foo86
    dca_parser : Extend DTS core sync word and fix existing check
    

    The previous version checked for 14-bit streams and did not properly
    work across buffer boundaries.

    Use the 64-bit parser state to make extended sync word detection work
    across buffer boundary and check the extended sync word for 16-bit LE
    and BE core streams to reduce probability of alias sync detection.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>
    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DH] libavcodec/dca_parser.c
  • How to listen and decode a rtmp video stream with python ?

    25 mai 2023, par Li-GanMa

    Such as the ffmpeg command

    &#xA;

    ffmpeg -listen 1 -i rtmp://localhost:1935/live/app

    &#xA;

    Is there any python lib to do the same thing ?

    &#xA;

    I tried this :

    &#xA;

    import av&#xA;container = av.open(&#x27;rtmp://localhost:1935/live/app&#x27;,listen=True)&#xA;for frame in container.decode(video=0):&#xA;    frame = frame.to_ndarray(format=&#x27;bgr24&#x27;)&#xA;    ...do some thing with the frame...&#xA;

    &#xA;

    But I got erroropen() got an unexpected keyword argument &#x27;listen&#x27;

    &#xA;