Recherche avancée

Médias (0)

Mot : - Tags -/utilisateurs

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

Autres articles (77)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

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

Sur d’autres sites (6694)

  • Multiple custom fonts with AWS lambda not working

    26 août 2022, par Osama Bin Saleem

    I'm using AWS lambda with python and ffmpeg to add textual watermark over images. I added a custom font i.e Quicksand to my lambda function like this :

    


    1- Create a fonts directory in the root of the function and add the font file (.ttf) and a font.conf file with the following contents :

    


    &lt;?xml version="1.0"?>&#xA;&#xA;<fontconfig>&#xA;  <dir>/var/task/fonts/</dir>&#xA;  <cachedir>/tmp/fonts-cache/</cachedir>&#xA;  <config></config>&#xA;</fontconfig>&#xA;

    &#xA;

    2- Added an environment variable like this

    &#xA;

    FONTCONFIG_PATH = "/var/task/fonts"&#xA;

    &#xA;

    It was working fine until I chose to add more fonts. Now when I try to use some font other than the Quicksand e.g Arial, it still uses the Quicksand font. I'm not sure why ? In the CloudWatch Logs I can see it is still trying to access the Quicksand font rather than the Arial one even when the code is right. Any caching issue or something else ?

    &#xA;

    My folder structure :&#xA;enter image description here

    &#xA;

    Cloudwatch logs :

    &#xA;

    [Parsed_drawtext_0 @ 0x70b5bc0] Using "/var/task/fonts/Quicksand.ttf"&#xA;

    &#xA;

    Maybe its a caching issue ? I'm not sure.

    &#xA;

    My ffmpeg code :

    &#xA;

    ffmpeg -i video.mp4 -vf "drawtext=font=‘Quicksand.ttf&#x27;&#xA;:text=&#x27;StackOverflow&#x27;:fontcolor=white:fontsize=24:box=1:boxcolor=black@0.5:boxborderw=5:x=w-mod(max(t-0\,0)*(w&#x2B;tw)/6\,(w&#x2B;tw)):y=(h-text_h)/2" -codec:a copy Newwwtext.mp4&#xA;

    &#xA;

  • We made it to 10K followers on GitHub !

    2 octobre 2018, par Matomo Core Team — Community

    10000 stars on Github

    Matomo has now officially reached 10,000 stars on Github ! It warms our hearts to know we’re on the right path and still getting such great support. 

    From the team here we’d like to say thank you ! Especially to all of you who have made Matomo the #1 free open source web analytics platform in the world !

    Today, Matomo is used on over 1.4 million websites, in over 190 countries, translated in more than 50 languages ; and it’s all because of you.

    The most exciting part is that this is only the beginning, there is an exciting journey ahead and with your help we will continue our mission to always respect your privacy and give users full control of their data.

  • FFMPEG : change input without stoping proccess

    10 juillet 2018, par admin883

    how i can change input on ffmpeg without stop process on linux Debian 9 ?
    im user decklink input and i need to change to file mp4 input.

    ffmpeg -f decklink -i 'DeckLink Mini Recorder' -vf setpts=PTS-STARTPTS -pix_fmt uyvy422 -s 1920x1080 -r 25000/1000 -f decklink 'DeckLink Mini Monitor'