Recherche avancée

Médias (91)

Autres articles (65)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (6285)

  • how to apply LUT filter with movie filter in ffmpeg

    5 mai 2017, par Nayan

    movie=logo [watermark] ; [in][watermark] overlay=(main_w-overlay_w)/2 :(main_h-overlay_h)/2[out] ;

    By giving image input using movie filter, I want to make watermark image transparent.I written code in visual c++. Please help to correct command syntax to pass filter description into filter graph.

  • mov : Evaluate the movie display matrix

    3 novembre 2016, par Vittorio Giovara
    mov : Evaluate the movie display matrix
    

    This matrix needs to be applied after all others have (currently only
    display matrix from trak), but cannot be handled in movie box, since
    streams are not allocated yet. So store it in main context, and apply
    it when appropriate, that is after parsing the tkhd one.

    Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>

    • [DH] libavformat/isom.h
    • [DH] libavformat/mov.c
  • Regarding rotation information when rotating a movie in Avfoundation

    15 août 2017, par howmanylife

    I was able to rotate the movie with the following code

    videoCompositionTrack.preferredTransform = CGAffineTransform(rotationAngle: CGFloat(M_PI_2))

    I confirmed the information of the rotated video by ffmpeg. Rotate in the tag does not fluctuate as shown below, but a tag called side_data_list was generated and the value of rotation in side_data_list fluctuated, while keeping the information of rotate in tag unchanged.I want to change "tag" information.

    "tags": {
                   "rotate": "90"
           },
    "side_data_list": [
                   {
    "rotation": -90
                   }

    Are there any good advice on AVFoundation and ffmpeg ?