Recherche avancée

Médias (0)

Mot : - Tags -/alertes

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

Autres articles (51)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (10014)

  • How to fix "Cannot find a valid font for the family Sans' while adding text on image using react-native-ffmpeg

    13 mai 2024, par coffee

    I am trying to add text on image using the code below
RNFFmpeg
.execute(`-y -i ${input} -vf "drawtext=text='Hello World':fontcolor=white:fontsize=75:x=0:y=0" ${output}`) ;

    


    I am not using any custom font but still get this error.

    


    Error :

    


    [Parsed_drawtext_0 @ 0x7f87a1ce40] Cannot find a valid font for the family Sans

    


    index.js:115 [AVFilterGraph @ 0x7f6765e760] Error initializing filter 'drawtext'
index.js:115 [AVFilterGraph @ 0x7f6765e760] with args 'text=Hello World:fontcolor=white:fontsize=75:x=0:y=0'
index.js:115 [AVFilterGraph @ 0x7f6765e760]

    


    index.js:115 Error reinitializing filters !

    


    index.js:115 Failed to inject frame into filter network : No such file or directory

    


    index.js:115 Error while processing the decoded data for stream #0:0

    


    Note :

    


    I also tried using a custom font but not able to do it.
When I use RNFFmpegConfig.setFontDirectory('../../assets/fonts') function and with it the following code to add text on image
RNFFmpeg
.execute(`-y -i ${input} -vf "drawtext=text='Hello World':fontfile='../../assets/fonts/MyFont.ttf':fontcolor=white:fontsize=75:x=0:y=0" ${output}`) ;

    


    It gives me the same error.

    


    How can I fix this issue.

    


  • Which Dedicated Server for FFMPEG ?

    11 février 2017, par OarSmaN

    My website converts video to audio and video to video using FFMPEG (full Centos 64bit install). Mostly i got multiple conversions (10-20) real time. I use cache for already converted audios/videos. I am currently moving to a dedicated server and i need to know which configuration would be best for my situation.

    Which of the below servers is better for FFMPEG ;

    SINGLE Intel® Xeon® Processor E3-1270 v5, 8M Smart Cache, 3.60 GHz, 8 GT/s DMI3 (4 Cores-8 Threads) / 32GB DDR4 2133 / 240GB S3500 Intel Wolfsville SSD + 1TB Enterprise Grade HDD (for caching)

    DUAL Intel® Xeon® Processor E5-2620, 15M Smart Cache, 2.00 GHz, 7.20 GT/s Intel® QPI (12 Cores-24 Threads) / 32GB DDR3 1333 / 120GB S3500 Intel Wolfsville SSD + 1TB Enterprise Grade HDD (for caching)

    thanks for your ideas.

  • Using -itsoffset with AAC Tracks in MP4 : What Actually Happens ? [closed]

    10 avril, par user27607034

    If the frame duration of an AAC file is around 21 milliseconds, does the itsoffset value in the following command actually get applied ? And even if it does, will players like QuickTime or a smart TV actually respect it ?

    


    ffmpeg -itsoffset 0.009 -i input.mp4 \
  -i input.mp4 \
  -map 1:v:0 \ // hevc
  -map 0:a:0 \ // aac
  -c copy \
  output.mp4