Recherche avancée

Médias (0)

Mot : - Tags -/gis

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

Autres articles (54)

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

  • 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

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (7108)

  • Usurper of FATE

    31 juillet 2010, par Multimedia Mike — FATE Server

    Mans sent a message to the FFmpeg-devel list today :

    A new FATE

    Mike’s FATE system has done a great job over the last few years. It
    is however beginning to prove inadequate in various ways :

    [various shortcomings already dissected at length on this very blog]

    To address the above-mentioned issues, I have been working on a
    replacement system which is now ready to be announced.

    Check it out : http://fate.ffmpeg.org/.

    Considering that he just obsoleted something I’ve poured a lot of time and energy into over the last 2.5 years, is my first reaction to this news supposed to be unbridled joy ? Hey, I’m already on record as stating that I wouldn’t mind throwing away all of FATE if there was a better alternative.

    I’m not certain but I’m pretty sure that at this point, the original FATE server is practically obsolete. Mans is already testing all of his configurations as well as the configs I test. As soon as the other FATE installations switch over to the new server, I should be able to redirect fate.multimedia.cx -> fate.ffmpeg.org, sell most of my computers, and spend more time with my family.

    Thanks, Mans !

  • Shadow on Central Image via FFMPEG [closed]

    9 octobre 2023, par Ashish Chaturvedi

    enter image description here

    


    To create an image for use in portrait orientations and for YouTube thumbnails in both 16 by 9 and 9 by 16 aspect ratios,

    


    I want to add a shadow effect to the central cover art image.

    


    The desired effect involves placing the main image in the center and surrounding it with a blurred background.

    


    The primary focus is to achieve a shadowing effect on the central image via the FFMPEG command as show in the below image.

    


    Any help/idea will be more helpful.

    


  • FFMpeg : how to blur two fixed regions at the bottom of the video file ?

    24 décembre 2022, par bully44

    I'm trying to blur to rectangular regions at the bottom of the video. Only short region around center should stay as it is, and 140 pixels regions on both sides should be blurred.
The left region is ok, but just cannot set correctly the right one. For visual reason, I'm displaying it higher, but I just cannot get x coordinate and size in correct position.

    


    ffmpeg -i Test1.mp4 -filter_complex  \
"[0:v]crop=iw/2-40:140:0:ih-140,avgblur=10[b0]; \
 [0:v]crop=iw/2-50:140:iw/2+200:ih-140,avgblur=5[b1]; \
 [0:v][b0]overlay=0:H-h[ovr0]; \
 [ovr0][b1]overlay=W/2+100:H-h-500" \
 -c:a copy -movflags +faststart Test_blur.mp4


    


    As FFMpeg newbie, I must be doing something obviously wrong.
Thanks in advance,
regards.