Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (83)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

Sur d’autres sites (9507)

  • 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;