Advanced search

Medias (91)

Other articles (76)

  • MediaSPIP version 0.1 Beta

    16 April 2011, by

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Amélioration de la version de base

    13 September 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 (...)

  • Mise à jour de la version 0.1 vers 0.2

    24 June 2013, by

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1); Installation des dépendances pour Smush; Installation de MediaInfo et FFprobe pour la récupération des métadonnées; On n’utilise plus ffmpeg2theora; On n’installe plus flvtool2 au profit de flvtool++; On n’installe plus ffmpeg-php qui n’est plus maintenu au profit de (...)

On other websites (8120)

  • Changing the background color of the movie while using tpad and adelay

    1 August 2019, by S.T

    i want to change the background color of a movie while using tpad and adelay commands. it is now black ( until the movie starts).

    the command i tried listed below, and i don’t know how to change the color while the movie is in it’s delay ( probably something with the tpad that needs to be change).

    -filter_complex [0:v]scale=1920:1080,tpad=start_duration=5[v];
     [0:a]adelay=5s|s[a] -map [v] -map [a] -b 6000k

    the 5 seconds that the movie is in its "waiting mode" needs to be changed from default black to some other color. Thanks.

  • FFMPEG color to transparencyq

    5 September 2019, by Andrew L

    I am trying to convert a mp4 video with a completely uniform pink color to a mov file seuch that the pink color is transparent.

    I have run:

    ffmpeg -i input.mp4 -vf "chromakey=0xf25b98:0.01:0" -c copy -c:v png output.mov

    I confirmed that #f25b98 is the color I am replacing. This makes absolutely nothing transparent. When I try:

    ffmpeg -i input.mp4 -vf "chromakey=0xf25b98:0.02:0" -c copy -c:v png output.mov

    I get some weird transparent dots in my pink but still nothing is changed (see attached screenshot from video).

    Why would ffmpeg exhibit this behavior?

    output image

  • Swscale color space convert interlaced frames?

    29 May 2012, by Nioreh

    I am writing an application that exports video that I have captured (PAL SDI). The original color space is uyvy (4:2:2). When I convert the frames with swscale to 4:2:0 and encode with avcodec I get color bleeding between the fields. I suspect this is from swscale not being aware of the frame being interlaced. Here is an example of a part of a bob-deinterlaced frame from my exported video showing one of the fields:

    color bleeding between fields

    As you can see, the color bleeds from the other field. How do I keep this from happening? I have looked at the library and tried to find anything in swscale that tells it to respect the fields, but I haven't found anything.

    I store each field in seperate buffers, so I can process the fields individually before hand if that would help.

    Thankful for any help on this!

    Regards
    Carl

    Edit: Basically, what I want is to output PAL DV. I suspect swscale is able to somehow produce this type of interlaced 420, since ffmpeg (the application) can handle this (I think).