Recherche avancée

Médias (91)

Autres articles (112)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (7863)

  • ffmpeg drawtext support for Tibetan fonts

    19 juin 2020, par A-Circle Zhang

    I'm trying to use ffmpeg drawtext filter to render Tibetan text to videos. But some characters aren't rendered correctly.

    



    for example :

    



    


    སྤྱི་སྟེགས

    


    



    Expected render output

    



    some characters which is.. vertically too long, are not rendered correctly :

    



    Actual render output

    



    and this is my command line for generating the output :

    



    ffmpeg -i input.mp4 -filter_complex "drawtext=fontsize=80:fontcolor=black:fontfile=himalaya.ttf:shadowx=1:shadowy=1:text='སྤྱི་སྟེགས':x=0:y=0" -c:v libx264 -b:v 400k -c:a copy output.mp4


    



    The font himalaya.ttf (Microsoft Himalaya) is the default built-in font for Tibetan on Windows 10. (See https://docs.microsoft.com/en-us/typography/font-list/microsoft-himalaya )

    



    I tried text_shaping=1 and text_shaping=0, neither one is working.

    



    I've also tried other Tibetan fonts, problem is the same.

    



    But all of those fonts are rendered correctly in other places such as web browser.

    


  • fate : Make sure a corner-case for ASF is covered

    14 août 2015, par Alexandra Hájková
    fate : Make sure a corner-case for ASF is covered
    

    Test the demuxer for the case when the replicated data length in
    a sample is 0.

    Sample-ID : https://samples.libav.org/mplayer-bugs/bug821/bug821-2.asf

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] tests/fate/microsoft.mak
    • [DBH] tests/ref/fate/asf-repldata
  • I'm trying to merge videos using fluent-ffmpeg, but some times it merges videos , but whenever we tries to merge videos second time it shows error

    9 janvier 2024, par Asif Mujawar
    const express =require(&#x27;express&#x27;)&#xA;const app = express()&#xA;const ffmpeg = require(&#x27;fluent-ffmpeg&#x27;)&#xA;const ffmpegPath = require(&#x27;@ffmpeg-installer/ffmpeg&#x27;)&#xA;const ffprobe = require(&#x27;@ffprobe-installer/ffprobe&#x27;)&#xA;&#xA;const first = &#x27;./videos/first.mp4&#x27;&#xA;const second = &#x27;./videos/second.mp4&#x27;&#xA;const third = &#x27;./videos/third.mp4&#x27;&#xA;const fourth = &#x27;./videos/fourth.mp4&#x27;&#xA;&#xA;ffmpeg.setFfprobePath(ffprobe.path)&#xA;ffmpeg.setFfmpegPath(ffmpegPath.path)&#xA;&#xA;app.use(express.json())&#xA;&#xA;app.use("/",(req,res)=>{&#xA;    res.send("hello")&#xA;&#xA;    ffmpeg()&#xA;    .input(first)&#xA;    .input(second)&#xA; &#xA;    .on(&#x27;end&#x27;, function() {&#xA;      console.log(&#x27;files have been merged succesfully&#x27;);&#xA;    })&#xA;    .on(&#x27;error&#x27;, function(err) {&#xA;      console.log(&#x27;an error happened: &#x27; &#x2B; err.message);&#xA;    })&#xA;    .mergeToFile("final.mp4")&#xA;  })&#xA;  &#xA;&#xA;app.listen(8800,()=>{&#xA;    console.log("backend is running 8800")&#xA;})&#xA;&#xA;

    &#xA;

    but it shows error whenever we try to merge videos second time

    &#xA;

    an error happened : ffmpeg exited with code 1 : Cannot find a matching stream for unlabeled input pad 3 on filter Parsed_concat_0

    &#xA;

    an error happened : ffmpeg exited with code 1 : Cannot find a matching stream for unlabeled input pad 3 on filter Parsed_concat_0

    &#xA;