Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (101)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

Sur d’autres sites (11631)

  • checkasm : arm : Don’t start new const blocks for each string

    16 juillet 2016, par Martin Storsjö
    checkasm : arm : Don’t start new const blocks for each string
    

    Each const block needs to be terminated by one endconst
    invocation so either call endconst after each, or just
    declare plain labels to the later strings.

    This fixes errors such as this, on some binutils versions :

    checkasm.S:38 : Error : Macro `endconst’ was already defined

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] tests/checkasm/arm/checkasm.S
  • 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.

  • avcodec/bitstream_filter : Fix initializing options from the argument string

    18 avril 2016, par Michael Niedermayer
    avcodec/bitstream_filter : Fix initializing options from the argument string
    

    Fixes ffmpeg ... -vbsf noise=234 ...

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/bitstream_filter.c