Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (73)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Creating farms of unique websites

    13 avril 2011, par

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

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

Sur d’autres sites (5982)

  • ffmpeg - copy stream without compression and add a text

    27 juillet 2018, par Karol

    I’m using ffmpeg to capture stream from IP cameras.
    with -vcodec copy one camera is using 5-7% of CPU which is great (old computer)

    I would like to add a timestamp to the captured video, this needs re-encoding. I tried different codecs but always it is using almost 100% of CPU.

    Is any possibility to use for example libx264 just for adding a text and do not compress the stream ? Stream from camera is in H264. I do not want to reduce size of the video, just to add a text and keep very low CPU usage.

    How to tell libx264 to just copy the stream ?

  • how to extract text from a video using ffmpeg

    3 avril 2021, par Captain_Zaraki

    I am trying to extract text from a video but it is giving an error.
Code I am using is-

    


     ffmpeg -i 1.mp4 -map 0:s:0 text.srt


    


    error I am getting is-

    


    Stream map '0:s:0' matches no streams.
To ignore this, add a trailing '?' to the map.


    


  • Is it possible to add a border around the box under the text for drawtext ? [closed]

    23 octobre 2024, par Nick

    I got the following command that adds an overlay with red text on a white box. How do I add a black border around the white box ?

    


    ffmpeg -i "input.mp4" -vf "drawtext=textfile='./text.txt':x=(w-text_w)/2:y=h-th-10-150:font='Arial':fontsize=60:fontcolor=red:box=1:boxcolor=white@1:boxborderw=25:enable='between(t,0,3)'" -c:a copy "output.mp4"