Recherche avancée

Médias (0)

Mot : - Tags -/tags

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (52)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • 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

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (11762)

  • vp9_parse : fix parsing of pskip and profile 2/3.

    4 septembre 2015, par Ronald S. Bultje
    vp9_parse : fix parsing of pskip and profile 2/3.
    

    The fate results change because we now correctly timestamp the pskip
    frames, which means the results are now identical to -vsync 0.

    • [DH] libavcodec/vp9_parser.c
    • [DH] tests/ref/fate/vp9-10-show-existing-frame
    • [DH] tests/ref/fate/vp9-10-show-existing-frame2
    • [DH] tests/ref/fate/vp9-16-intra-only
  •  : and - characters not showing when applying drawtext

    6 mars 2019, par SPYBUG96

    I am trying to get the characters ’-’ and ’ :’ to show up when I draw text on an image so I can have the date and time show up properly formatted. When I run the python code and all that to set up the text it is exactly how I want it, I printed it to the screen. When the command is run though, the date and time don’t show, at least when I try drawing this : 2018-12-12 T03:20:40 What shows up on the image is 12 T

    This is an example of the ’ :’ and ’-’ characters having a problem

    ffmpeg -y -i TifImageLoc -vf vflip,drawtext=fontfile=C:WINDOWS\Fonts\sserife.fon:fontsize=200:fontcolor=white:x=(w-text_w)/2:y=(h-texth-texth)/2:text="Hello\-\ \:World" -frranes:v 1 output1.tif

    When this is run I want the result of Hello- :World to be drawn on the image, but the actual result is Hello perfectly centered on the picture

    How do you draw the ’-’ and ’ :’ to an image using FFmpeg so that a date in this 2018-12-12 T03:20:40 format can be on the image ?

  • Use ffmpeg to cut out the first chapter

    7 janvier 2017, par UnR34L

    I’m trying to remove the first chapter of a TV show rip. The idea is to have something similar to netflix, where the first episode will show the intro then the consecutive episodes don’t.

    I’ve been getting the chapter time with ffprobe then doing it manually with this

    for %%A IN (*.mp4) DO ffmpeg -ss <chaptertime> -i "%%A" -vcodec copy -acodec copy "tmp.mp4" &amp;&amp; DEL "%%A" &amp;&amp; RENAME "tmp.mp4" "%%A"
    </chaptertime>

    How do I pass the first chapter time code value so ffmepg knows where to seek to ?

    Also hoping to use the same the same value to offset the subtitles so they align after the cut.

    Note : The machine I’ve doing the cutting on is windows but I can use my FreeBSD server if that’s easier.