Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (89)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (10305)

  • Use "this" instead of a closure variable as data parameter inside of the data.submit() method - Fixes #847.

    6 décembre 2011, par Sebastian Tschan

    m jquery.fileupload-ui.js m jquery.fileupload.js Use "this" instead of a closure variable as data parameter inside of the data.submit() method - Fixes #847. Store the jqXHR object returned by data.submit() as property of the data (...)

  • ffmpeg : zoom a horizontal photo in a vertical video, fill the empty space at the top and bottom with a blurry photo

    23 octobre 2023, par Eugene Khyst

    I'm using ffmpeg to create a vertical video of zoomming a horizontal (landscape) photo.

    


    I want the photo to fit the width of the video, so the top and bottom of the photo need to fill the empty space with the blurry photo :

    


    enter image description here

    


  • How do i overlay frame number on video in python

    11 mai 2022, par Anuj Saxena

    How do i watermarking a video with the current frame number ?
My command is
[ ffmpeg -i input -vf "drawtext=fontfile=Arial.ttf : text='%frame_num' : start_number=1 : x=(w-tw)/2 : y=h-(2*lh) : fontcolor=black : fontsize=20 : box=1 : boxcolor=white : boxborderw=5" -c:a copy output.mp4 ]

    


    when I run this command in the terminal I executed my task successfully. but when I used this command in IDE (pycharm) it treated text='%frame_num as a variable IDE throws an error and when i replace frame_num with 1 or 0 or any number then IDE executed my code and make a video but this video has no watermark of the current frame number.

    


    what should I do ??

    


    import os

cmd =f'''ffmpeg -i input.mp4 -vf "drawtext=fontfile=Arial.ttf: text='%{frame_num}': start_number=1: x=(w-tw)/2: y=h-(2*lh): fontcolor=black: fontsize=20: box=1: boxcolor=white: boxborderw=5" -c:a copy output.mp4'''

print(cmd)

os.system(cmd)