Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (33)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (8343)

  • avformat/oggparseogm : Check lb against psize

    9 mars 2018, par Michael Niedermayer
    avformat/oggparseogm : Check lb against psize
    

    No testcase, this was found during code review

    Found-by : Matt Wolenetz <wolenetz@google.com>
    Reviewed-by : Matt Wolenetz <wolenetz@google.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/oggparseogm.c
  • Vidgear write Video not open

    25 août 2020, par MrTuyen

    Source code

    &#xA;&#xA;

    Command : (https://drive.google.com/file/d/14YGKIhftAidQVvR_nMWY3oIhcWFzLERE/view?usp=sharing)

    &#xA;&#xA;

    No errors occurred. I have been trying to figure out how to write videos with Vidgear. I am working with windows and webcam.

    &#xA;&#xA;

    Error : "Output.mp4" Opened is a black color. (https://drive.google.com/file/d/11x-q_w59gdaAECtRIqi0MNGIOZ-Vuati/view?usp=sharing)

    &#xA;&#xA;

    # import required libraries&#xA;from vidgear.gears import CamGear&#xA;from vidgear.gears import WriteGear&#xA;import cv2&#xA;&#xA;# Open live video stream on webcam at first index(i.e. 0) device&#xA;stream = CamGear(source=0).start()&#xA;&#xA;# retrieve framerate from CamGear Stream and pass it as `-input_framerate` parameter&#xA;output_params = {"-input_framerate":stream.framerate}&#xA;&#xA;# Define writer with defined parameters and suitable output filename for e.g. `Output.mp4`&#xA;writer = WriteGear(output_filename = &#x27;Output.mp4&#x27;, **output_params)&#xA;&#xA;# loop over&#xA;while True:&#xA;&#xA;    # read frames from stream&#xA;    frame = stream.read()&#xA;&#xA;    # check for frame if None-type&#xA;    if frame is None:&#xA;        break&#xA;&#xA;&#xA;    # {do something with the frame here}&#xA;&#xA;&#xA;    # write frame to writer&#xA;    writer.write(frame)&#xA;&#xA;    # Show output window&#xA;    cv2.imshow("Output Frame", frame)&#xA;&#xA;    # check for &#x27;q&#x27; key if pressed&#xA;    key = cv2.waitKey(1) &amp; 0xFF&#xA;    if key == ord("q"):&#xA;        break&#xA;&#xA;# close output window&#xA;cv2.destroyAllWindows()&#xA;&#xA;# safely close video stream&#xA;stream.stop()&#xA;&#xA;# safely close writer&#xA;writer.close()&#xA;

    &#xA;

  • avformat/mov : Fix integer overflow in mov_get_stsc_samples()

    5 mars 2018, par Michael Niedermayer
    avformat/mov : Fix integer overflow in mov_get_stsc_samples()
    

    Fixes : runtime error : signed integer overflow : 5 * -2147483647 cannot be represented in type 'int'
    Fixes : Chromium bug 817338
    Reviewed-by : Matt Wolenetz <wolenetz@google.com>
    Reported-by : Matt Wolenetz <wolenetz@google.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/mov.c