Recherche avancée

Médias (91)

Autres articles (89)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

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

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

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

Sur d’autres sites (11638)

  • Swscale color space convert interlaced frames ?

    29 mai 2012, par 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).

  • BufferHow to get STDIN line color with JAVA using BufferedReader

    12 mai 2020, par Matan Marciano

    Im run FFplay process in my JAVA application and read his logs with BufferedReader.
I want to parse the logs to determine errors.
So I want to read the color for each line.
red for errors..
bufferedReader.readline() return the content, no any color code.

    



    Please advise.

    


  • Rendering pixel perfect subtitles for small videos

    23 octobre 2017, par forthrin

    I want to burn subtitles with a font as small as possible (yet readable) on top of a small size video, as shown on the first image. FFmpeg makes the font blurry for any font size tried (second image).

    ffmpeg -i in.jpg -vf "scale=160x128,subtitles=in.srt:force_style='OutlineColour=&H80000000,BorderStyle=3,Fontsize=15,Fontname=Silkscreen'" out.png

    Is there any way I can achieve pixel perfect subtitles with small fonts using FFmpeg or other readily available command line tools ? (The smallest font I’ve found is Silkscreen, though it’s ASCII only !)

    enter image description here
    enter image description here