Recherche avancée

Médias (0)

Mot : - Tags -/images

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

Autres articles (80)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

Sur d’autres sites (4306)

  • ffmpeg command line for converting flv to mp3 using vbr @128

    30 janvier 2019, par user1910852

    I have extensively searched google and red through the FFmpeg documentation was hoping some one with a bit more experience could help.

  • 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
  • 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;