Recherche avancée

Médias (91)

Autres articles (49)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (5026)

  • avfilter/firequalizer : use zero phase kernel

    19 octobre 2016, par Muhammad Faiz
    avfilter/firequalizer : use zero phase kernel
    

    this makes real-valued kernel

    Signed-off-by : Muhammad Faiz <mfcc64@gmail.com>

    • [DH] libavfilter/af_firequalizer.c
  • avfilter/avf_showcqt : set range on fps/rate/r option

    8 juin 2016, par Muhammad Faiz
    avfilter/avf_showcqt : set range on fps/rate/r option
    

    see Ticket #5618

    Signed-off-by : Muhammad Faiz <mfcc64@gmail.com>

    • [DH] libavfilter/avf_showcqt.c
  • how can i rotate text on video only without the video with ffmpeg commands

    13 juillet 2023, par Abdullah Mohamed

    I want to rotate the text only on the video&#xA;here is my code

    &#xA;

    -i &#x27;/Users/me-mac/Library/Developer/CoreSimulator/Devices/F4189FE6-50EA-40B4-AE0F-F19074EE1488/data/Containers/Data/Application/7C214A2B-440B-468F-85F4-AE74CC4EC509/tmp/.video/1687332725.289482_IMG_0136.MOV&#x27; -filter_complex &#x27;crop=1181.25:2100.0:1089.375:0.0,            drawtext=&#xA;              text=Abdullah Muhammad&#xA;              :fontsize=30&#xA;              :x=300&#xA;              :y=600&#xA;              :box=1&#xA;              :boxborderw=20&#xA;              :boxcolor=Gold&#xA;              &#x27; -preset ultrafast -y &#x27;/Users/me-mac/Library/Developer/CoreSimulator/Devices/F4189FE6-50EA-40B4-AE0F-F19074EE1488/data/Containers/Data/Application/7C214A2B-440B-468F-85F4-AE74CC4EC509/Library/Caches/1687332725.289482_IMG_0136_1689171861232.mp4&#x27;&#xA;

    &#xA;

    what i have tried

    &#xA;

    -i &#x27;/Users/me-mac/Library/Developer/CoreSimulator/Devices/F4189FE6-50EA-40B4-AE0F-F19074EE1488/data/Containers/Data/Application/7C214A2B-440B-468F-85F4-AE74CC4EC509/tmp/.video/1687332725.289482_IMG_0136.MOV&#x27; -filter_complex &#x27;crop=1181.25:2100.0:1089.375:0.0,            drawtext=&#xA;              text=Abdullah Muhammad&#xA;              :fontsize=30&#xA;              :x=300&#xA;              :y=600&#xA;              :box=1&#xA;              :boxborderw=20&#xA;        :boxcolor=Gold&#xA;        ,rotate=PI/6&#xA;              &#x27; -preset ultrafast -y &#x27;/Users/me-mac/Library/Developer/CoreSimulator/Devices/F4189FE6-50EA-40B4-AE0F-F19074EE1488/data/Containers/Data/Application/7C214A2B-440B-468F-85F4-AE74CC4EC509/Library/Caches/1687332725.289482_IMG_0136_1689171861232.mp4&#x27;&#xA;

    &#xA;

    expected result

    &#xA;

    &#xA;

    Text only to be rotated

    &#xA;

    &#xA;

    actual result

    &#xA;

    &#xA;

    Text and video are rotated

    &#xA;

    &#xA;