Recherche avancée

Médias (0)

Mot : - Tags -/optimisation

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

Autres articles (103)

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

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

Sur d’autres sites (12015)

  • doc/filters : document tukey window on firequalizer

    16 octobre 2016, par Muhammad Faiz
    doc/filters : document tukey window on firequalizer
    

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

    • [DH] doc/filters.texi
  • avfilter/avf_showcqt : use lrint

    22 février 2016, par Muhammad Faiz
    avfilter/avf_showcqt : use lrint
    

    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    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;