Recherche avancée

Médias (91)

Autres articles (79)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

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

Sur d’autres sites (7434)

  • How to make -vf "movie=..." point to another folder in FFmpeg [migrated]

    21 mars 2013, par evilheinz

    I'm trying to watermark a video with another video placed in a different folder.

    Source video [video.mov] is placed in a folder like

    x:\test1\

    Overlay video [overlay.mov] is placed in

    x:\test2\

    I'm using this command :

    ffmpeg.exe -y -i x:\test1\video.mov -vf "movie=x:\test2\overlay.mov [watermark]; [in][watermark] overlay=0:0 [out]" x:\test3\video_overlay.mov

    But I'm getting an error saying

    Missing key or no key/value separator found after key 'test2overlay.mov'

    When placing all files in the same folder and using this :

    ffmpeg.exe -y -i video.mov -vf "movie=overlay.mov [watermark]; [in][watermark] overlay=0:0 [out]" video_overlay.mov

    everything works fine.

    So how do I get the video filter to load the overlay file from a different folder on Windows ?

  • Revision 3350 : Insertion dans le pipeline post_edition - Invalide le cache lors de la ...

    28 avril 2010, par kent1 — Log

    Insertion dans le pipeline post_edition - Invalide le cache lors de la modification d’objets L’invalideur est passé par défaut sur les articles et forums cf : ecrire/inc/modifier.php

  • how to use ffmpeg to cache a stream

    17 septembre 2018, par Marcel

    i am using the following command to copy a live stream and restream it to a different endpoint. This works Ok , but the problem is that the stream breaks up/buffer occurs on client/stuttering and does not run smoothly or even fails.
    Here is the command i am using

    ffmpeg -loglevel fatal -fflags +igndts -re -i "$1" -acodec copy -vcodec copy -tune zerolatency -f mpegts pipe:1

    $1 is an mpegts http stream url

    what will be the correct command to use for ffmpeg to "cache" few seconds of the input stream (input is mpegts) before emitting the stream out as is ? I hope by caching i can get a smooth playback , no stuttering or buffering on the client side.

    thanks for help !!