Recherche avancée

Médias (0)

Mot : - Tags -/api

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

Autres articles (49)

  • 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

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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (9620)

  • cmdutils & opencl : add -opencl_bench option to test and show available OpenCL devices

    9 décembre 2013, par Lenny Wang
    cmdutils & opencl : add -opencl_bench option to test and show available OpenCL devices
    

    Reviewed-by : Wei Gao <highgod0401@gmail.com>
    Reviewed-by : Stefano Sabatini <stefasab@gmail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] Makefile
    • [DH] cmdutils.c
    • [DH] cmdutils.h
    • [DH] cmdutils_common_opts.h
    • [DH] cmdutils_opencl.c
    • [DH] doc/APIchanges
    • [DH] doc/fftools-common-opts.texi
    • [DH] doc/utils.texi
    • [DH] libavutil/opencl.c
    • [DH] libavutil/opencl.h
    • [DH] libavutil/version.h
  • Crop layout for Videos using touch for a Video Editor like Video Show or Filmora Go in android studio [closed]

    26 août 2020, par Rayhan Khan

    I am new to the android studio (Java) and video editing application. I am developing a video editor in android studio with FFMpeg Library.

    &#xA;

    I want to create a crop layout with a rectangle layer on top of it to measure the details like :

    &#xA;

    &#xA;&#xA;crop video width : 900&#xA;crop video height : 500&#xA;left distance (x value) : 190&#xA;top distance (y value) : 110&#xA;&#xA;                                    1280&#xA;****************************************************************************&#xA;*FULL VIDEO                           |                                    *&#xA;*                                    110                                   *&#xA;*                                     |                                    *&#xA;*            **************************************************            *&#xA;*            *                       900                      *            *&#xA;*            *                                                *            *&#xA;*            *                                                *            *&#xA;*            *                                                *            *&#xA;*            *                                                *            *&#xA;*            *                                                *            *&#xA;*----190-----*                     CONTENT                500 *----190-----* 720&#xA;*            *                                                *            *&#xA;*            *                                                *            *&#xA;*            *                                                *            *&#xA;*            *                                                *            *&#xA;*            *                                                *            *&#xA;*            **************************************************            *&#xA;*                                     |                                    *&#xA;*                                    110                                   *&#xA;*                                     |                                    *&#xA;****************************************************************************&#xA;

    &#xA;

    Please help. Thank you.

    &#xA;

    Screenshot 1 :

    &#xA;

    Image 1

    &#xA;

    Screenshot 2 :

    &#xA;

    Image 2

    &#xA;

  • Black overlay appears when merging a transparent video to another video

    13 juin 2012, par RakeshS

    This is what I have done so far :

    Command to create a transparent PNG image :

    convert -size 640x480 -background transparent -fill blue \
    -gravity South label:ROCK image1-0.png

    Command to create a transparent video :

    ffmpeg -loop 1 -f image2 -i image1-0.png -r 20 -vframes 100 \
    -vcodec png -pix_fmt bgra mov-1.mov

    (as per this post) - I expect this video to be a transparent video.

    Command to overlay a video with another :

    ffmpeg -i final-video.mov -sameq -ar 44100 \
    -vf "movie=mov-1.mov [logo];[in][logo] overlay=0:0 [out]" \
    -strict experimental final-video.mov

    Above commands works perfect and I have not faced any problem, but I don't get what I expect which is kinda watermarking effect, I want mov-1.mov to be transparent with final-video.mov.

    Questions :

    1. Is there any way to verify if the generated video is transparent ? other than merging ?
    2. Not sure why the above mov-1.mov is not transparent when it is merged with final-video.mov, any info to solve this problem would be great.

    Please help.