Recherche avancée

Médias (91)

Autres articles (101)

  • Que fait exactement ce script ?

    18 janvier 2011, par

    Ce script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
    Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
    Installation de dépendances de MediaSPIP
    Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
    Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

Sur d’autres sites (11314)

  • How to animate ffmpeg's boxblur

    30 juin 2016, par user1661677

    I am running the following ffmpeg command which converts a single image to a 10 second slow-zoom into the center of the photo.

    As you can see, I currently have the boxblurlooking how I would like it, but it is applied to the entire 10 second clip. I’d like to blur the first 3 seconds, and then animate the radius of the blur from it’s current value of boxblur=10:9 to boxblur=0:0 from 3.0 - 4.0 seconds (24 frames at 24p).

    ffmpeg -loop 1 -framerate 24 -i image.jpg -vf "boxblur=10:9,zoompan=z='min(zoom+0.0005,1.12)':x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)':d=240:s=hd1080:fps=24" -c:v libx264 -pix_fmt yuv420p -t 10 -s hd1080 -crf 20  video.mp4

    Any help on how to achieve this ?

  • Android - Add text or image while recording video ?

    1er mars 2017, par LuongTruong

    I am struggling with recording and editing videos. For editing, I found a useful library in Android named ffmpeg4Android. However, I am still get stuck in recording video. Here is what I want :

    1/ Add text or images in video while recording
    2/ Add filter while recording video

    I found there is a library GPUImage for Android but it has only some examples related to taking a photo, not to recording video)

    Please let me know if you have any ways or any suggested libraries which can do it.

    Thank you in advance !

    Links which I read when researching :
    Add overlay while record video on Android
    How to Record video with GPUImage ?
    FFMpeg add text to actual video file after recording in Android

  • Adding unique RGB color watermark per video frame with FFmpeg

    8 juin 2016, par Dustin Kerstein

    I’d like to add a unique watermark onto each unique video frame in an h264 mp4 video. More specifically, I want the watermark to be a X by X pixel square solid 8-bit RGB color, and each color watermark should be unique across all frames in the video (up to the theoretical 24 bit max of 16.7 million colors/frames).

    Is this possible to do programatically using FFmpeg filters (or another tool) without requiring a photo for each possible color watermark ?

    If not, assuming I already have the full set of 1029 solid color photos downloaded from http://www.solidbackgrounds.com, can anyone think of an easy way to watermark a video with <= 1029 frames using FFmpeg ?