Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (95)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • 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

Sur d’autres sites (8484)

  • Reformat the license text.

    20 juillet 2019, par blueimp
    Reformat the license text.
  • Using squish(x) to fade in/out text

    15 mars 2023, par Alessandro U. Viretta

    I would like to use the squish() function to fade in/out text by using alpha=squish(t-3) to fade the text out and alpha=1-squish(t-3) to fade it in.

    


    Fading out works well :

    


    ffplay -f lavfi -i color=#dddddd:s=640x480 -vf "drawtext='text=TEST:x=(w-text_w)/2:y=(h-text_h)/2:fontsize=200:alpha=squish(t-3)'"


    


    but fading in does not work at all :

    


    ffplay -f lavfi -i color=#dddddd:s=640x480 -vf "drawtext='text=TEST:x=(w-text_w)/2:y=(h-text_h)/2:fontsize=200:alpha=1-squish(t-3)'"


    


    Am I missing anything or is it a bug ?

    


  • How to specify text-only subtitles in ffmpeg

    20 juin 2019, par Daniel Engel

    I’m trying to script some basic DVD-to-home media server processing. One of the things I’m trying to do, which seems like it should be pretty basic, is extract the text (srt) subtitles from the .mp4 file from the initial rip.

    I can see the stream, and if I select the stream explicitly (by stream number), I can extract it. However, I want to script the ffmpeg command. If I try to just specify the subtitle stream with a -map option, it maps the first subtitle stream, which is often a bitmap stream instead of text stream.

    So, after ripping some of my DVD’s, I’d like to process everything in a batch script, something like :

    for video in *.mp4; do
     ...
     (special code to get $subtitle filename with .srt instead of .mp4)
     ffmpeg -i "$video" -map 0:s "$subtitle"
     ...
    done

    I’d like the "-map" option to cause ffmpeg to select only text-based subtitles (like mov_text), and not, for example, dvd_subtitle, irrespective of which is first in the list of streams.

    Does anybody know of a way to do this ?