Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (48)

  • 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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (8686)

  • avfilter/delogo : Fix show option when band is small

    28 septembre 2015, par Jean Delvare
    avfilter/delogo : Fix show option when band is small
    

    The code assumed that the outermost interpolated pixels were always in
    the fuzzy area defined by the band option. However if the band value
    is small, there may be no fuzzy area on a given plane. In that case,
    option show did not work, no rectangle was drawn (or only on the luma
    plane, depending on the band value and chroma plane subsampling
    factors.)

    Fix the problem by not making any assumption on where the outermost
    interpolated pixels will be.

    The new code was verified to produce the same result as the original
    code when the band value is not small.

    Signed-off-by : Jean Delvare <jdelvare@suse.de>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavfilter/vf_delogo.c
  • Can't show image with opencv when importing av

    5 mars, par Flojomojo

    When importing the PyAv module, I am unable to show an image with opencv using imshow()

    &#xA;

    Code without the PyAv module (works as expected)

    &#xA;

    import cv2&#xA;&#xA;img = cv2.imread("test_image.jpeg")&#xA;cv2.imshow(&#x27;image&#x27;, img)&#xA;cv2.waitKey(0)&#xA;

    &#xA;

    Code with the import (doesn't work, just hangs)

    &#xA;

    import cv2&#xA;import av&#xA;&#xA;img = cv2.imread("test_image.jpeg")&#xA;cv2.imshow(&#x27;image&#x27;, img)&#xA;cv2.waitKey(0)&#xA;

    &#xA;

    OS : Linux arch 5.18.3-arch1-1 #1 SMP PREEMPT_DYNAMIC Thu, 09 Jun 2022 16:14:10 +0000 x86_64 GNU/Linux

    &#xA;

    Am I doing something wrong or is this a (un-)known issue ?

    &#xA;

  • FFmpeg slide show duration from text file

    8 mai 2022, par krv

    I am using ffmpeg to create a slideshow of images from a list of files. I am using the following command.

    &#xA;

    ffmpeg -f concat -i List.txt output.mp4&#xA;

    &#xA;

    How can is set the duration of all the images in the list to 5 seconds so each image is displayed for 5 seconds ?

    &#xA;

    Thanks

    &#xA;