Recherche avancée

Médias (0)

Mot : - Tags -/auteurs

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (34)

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (7384)

  • lavu/tx : wrap missed string in NULL_IF_CONFIG_SMALL

    7 février 2022, par Lynne
    lavu/tx : wrap missed string in NULL_IF_CONFIG_SMALL
    

    It's the only one that isn't defined through the macros used elsewhere.

    • [DH] libavutil/tx.c
  • writting mp4 file from binary string python

    25 avril 2016, par Irakli Mchedlishvili

    I have a Binary string of mp4 video file and want to convert it back to mp4 file, to get single frame out of there with openCV library

    import cv2
    import tempfile

    temp_path = tempfile.gettempdir()
    video_binary_string = 'AAAAIGZ0eXBpc29tAAACAGlzb21pc28yYXZjMW1wNDEAAAAIZnJlZQAQC0ttZGF0AQIUGRQmM...'

    with open(temp_path+'/video.mp4', 'wb') as wfile:
      wfile.write(video_binary_string)
    cap = cv2.VideoCapture(temp_path+'/video.mp4')
    success, frame = cap.read()

    print success
    >>> False

    If frame was read correctly, it would be True

    I understand that this is not the correct way of writing video file. I tried to do it with FFMPEG but I can’t understand it’s documentation.

    Please give an example with simple explanations how to convert binary string back to video, with this or other way.

  • ffprobe : fix crash in case -of is specified with an empty string

    17 novembre 2016, par Stefano Sabatini
    ffprobe : fix crash in case -of is specified with an empty string
    

    Fix trac issue #5957.

    • [DH] ffprobe.c