Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (50)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • MediaSPIP en mode privé (Intranet)

    17 septembre 2013, par

    À partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
    Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
    Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)

  • Formulaire personnalisable

    21 juin 2013, par

    Cette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
    Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire. (...)

Sur d’autres sites (3147)

  • combine two audio files with a command line tool

    6 novembre 2015, par holographix

    I’ve to merge two (or more) audio files (like a guitar and a drum track) into a single file.
    I’m running over linux CentOS and I’d need a command line tool to do so, because I’ve got to run this as part of a background process, triggered via crontab of a custom bash script.
    I also need to be able to change the pan, volume, trim and start time (i.e I want the guitar track to start after 1.25ms after the drum track so that they can be both in sync with each other).

    My first choice would be ffmpeg, but I was wondering if there could be something more specific, reliable and less fuzzy than ffmpeg.

    thx a ton !
    - k-

  • avformat/iamf_reader : split "if ((ret = ...) < 0)" line

    5 mai 2024, par James Almer
    avformat/iamf_reader : split "if ((ret = ...) < 0)" line
    

    Cosmetic change.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/iamf_reader.c
  • Handling multiple line subtitles of Right aligned languages(arabic) in Moviepy

    24 décembre 2023, par Stanger Danger

    I am trying to add Arabic subtitles on a video using Moviepy. The issue I'm facing is related to alignment of Arabic text, as it progresses from right to left, instead of left to right in English language.

    &#xA;

    enter image description here

    &#xA;

    As text length gets more and more, Moviepy trims the words from both ends, this issue can be resolved if we break the text into multiple lines. This works well for English language but for Arabic, the first line becomes the last line because of the (Right-Left)alignment.

    &#xA;

    enter image description here

    &#xA;

    The text on Second line should come first on the first line at the start, while end chuck of first text towards the left corner should render on the second line, but it is getting rendered as English language, Left to right alignment.

    &#xA;

    Here is my code :

    &#xA;

    def add_subtitles(address_subtitles, address_video):&#xA;  video = VideoFileClip(address_video)&#xA;  generator = lambda txt: TextClip(txt, font=&#x27;Arial&#x27;, fontsize=22, color=&#x27;black&#x27;, stroke_width=2, method=&#x27;caption&#x27;, align=&#x27;south&#x27;, size=video.size)&#xA;  subtitles = SubtitlesClip(address_subtitles, generator)&#xA;  #print()&#xA;&#xA;  result = CompositeVideoClip([video, subtitles.set_pos((&#x27;center&#x27;,&#x27;bottom&#x27;))])&#xA;  result.write_videofile("arabic_with_hardcoded_subtitles_3.mp4", fps=video.fps, temp_audiofile="temp-audio.m4a", remove_temp=True, codec="libx264"&#xA;  , audio_codec="aac")&#xA;

    &#xA;