Advanced search

Medias (1)

Tag: - Tags -/ogg

Other articles (31)

  • MediaSPIP Core : La Configuration

    9 November 2010, by

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes; une page spécifique à la configuration de la page d’accueil du site; une page spécifique à la configuration des secteurs;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques de (...)

  • Creating farms of unique websites

    13 April 2011, by

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things): implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

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

    5 September 2013, by

    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;

On other websites (7798)

  • Why isn't the 'wrap' option recognized in FFmpeg's drawtext filter?

    24 February 2023, by eugene_prg

    I'm trying to add text to a video using FFmpeg's drawtext filter, but I'm running into an issue with the 'wrap' option. Whenever I include 'wrap=500' in the filtergraph, I get the following error message:

    


    [Parsed_drawtext_1 @ 0x563e23b1f500] Option 'wrap' not found
[AVFilterGraph @ 0x563e23b18d00] Error initializing filter 'drawtext' with args 'enable=between(t,0,4):text=one day you wake up and...:x=(w-text_w)/2:y=570:fontsize=48:fontcolor=white:box=1:boxcolor=black@0.5:boxborderw=5:wrap=500'
Error reinitializing filters!
Failed to inject frame into filter network: Option not found
Error while processing the decoded data for stream #0:0

    


    Here's the full command I'm using:

    


    ffmpeg -y -i "./videos/pexels-ivan-samkov-6689156.mp4" -vf "drawtext=fontfile=./fonts/DejaVuSans.ttf:text='DID U KNOW':x=(w-text_w)/2:y=200:fontsize=72:fontcolor=white:box=1:boxcolor=black@0.5:boxborderw=10, drawtext='enable=between(t,0,4)':text='do you know that girls...':x=(w-text_w)/2:y=570:fontsize=48:fontcolor=white:box=1:boxcolor=black@0.5:boxborderw=5:wrap=500, drawtext='enable=between(t,4,8)':text='are smarter than guys?':x=(w-text_w)/2:y=570:fontsize=48:fontcolor=white:box=1:boxcolor=black@0.5:boxborderw=5" -c:a copy "pexels-ivan-samkov-6689156.mp4_with_labels.mp4"


    


    I'm not sure why the 'wrap' option isn't recognized. Can anyone help me figure out what's going on?

    


  • Evolution #3336: Amélioration sitemap.xml.html pour gestion des sites multilingues

    21 November 2014, by Guillaume Fahrner

    Ci joint le code complet du fichier sitemap.xml.html (j’ai perdu mon compte SVN et du coup je ne peux plus commit). J’ai du modifier la balise urlset comme le préconise google pour ajouter le namespace qui va bien. A part ca rien de bien fou, deux boucles traductions pour les rubriques et les articles en plus permettant d’ajouter les liens de traductions au sitemap.

    [(#REM)

    Exemple tres simple de sitemap.xml accessible via URL_SITE_SPIP/sitemap.xml
    (copier htaccess.txt en .htaccess pour en beneficier)

    Ce sitemap affiche la liste des rubriques, breves et articles, en se limitant a 1000 rubriques, 1000 breves et 2000 articles pour des raisons
    de performances.

    Duree de reindexation et priorite ne sont pas precisees,
    sauf pour l’accueil.

    Mais si date_modif est recente (1 jour) on l’indique, pour que ce
    soit reindexe en priorite

    (On pose un cache a zero pour echapper au test _IS_BOT)

    ]#CACHE0
    #HTTP_HEADERContent-Type: text/xml; charset=utf-8
    <?xml version="1.0" encoding="UTF-8"?>

    [(#REM) Accueil]

    #URL_SITE_SPIP/
    hourly

    [(#REM) Rubriques ]


    [(#URL_RUBRIQUE|url_absolue)]

    [(#REM) Articles ]
    [(#SETrecent,[(#VALY-m-d H:i:s|date#VAL"-1 day"|strtotime)])]


    [(#URL_ARTICLE|url_absolue)]

    [(#DATE_MODIF**|>#GETrecent
    |?[(#DATE_MODIF**|date_iso)])]

    [(#REM) Breves ]
    [
    (#URL_BREVE|url_absolue)]

  • Stream H264 To Android Using FFMPEG

    26 February 2013, by GroovyDotCom

    I'm trying to stream a .ts file containing H.264 and AAC as an RTP stream to an Android device.

    I tried:

    .\ffmpeg -fflags +genpts -re -i 1.ts -vcodec copy -an -f rtp rtp://127.0.0.1:10
    000 -vn -acodec copy -f rtp rtp://127.0.0.1:20000 -newaudio

    FFMPEG displays what should be in your SDP file and I copied this into an SDP file and tried playing from VLC and FFPLAY. VLC plays audio but just gives errors re: bad NAL unit types for video. FFPLAY doesn't play anything.

    My best guess if that the FFMPEG H.264 RTP implementation is broken or at least it doesn't work in video passthru mode (i.e. using the -vcodec copy).

    I need a fix for FFMPEG or an alternate simple open-source solution. I don't want to install FFMPEG in my Android client.

    thanks.