Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (40)

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

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (...)

Sur d’autres sites (4844)

  • How to add Logo (watermark) to Videos using ffmpeg - Clipbucket script

    27 mai 2017, par Spirog

    How to add Logo (watermark) to Videos using ffmpeg - Clipbucket script

    The files are ffmpeg.class.php and conversion.class.php of the script that does the processing - conversion. where can I add some code to allow this watermark in the videos I upload to my site ?

    https://github.com/arslancb/clipbucket/tree/master/upload/includes/classes/conversion

    Thanks in advance,
    Spiro

  • How can I extract the first frame from a movie AND overlay a watermark on it at the same time ?

    29 mai 2017, par Eric Vasilik

    I want to, with a single ffmpeg command line, extract the first frame from a movie (as a .jpg and sized to fit inside a box of a given size), and overlay a centered PNG on that frame.

    I’ve run into problems using -vf and -filter_complex at the same time.

  • Rsync a video stream continously and watch it

    13 juin 2017, par Ural

    I am recording a cam on a remote machine in my office. I use ffmpeg for that, and writing to mpegts file.
    I want to copy that stream locally, to have a fresh copy, and watch it simultaneously.
    I don’t know options for rsync to grab a changing (appending) file, so I am using loop for it, and it is very slow.

    while true; do rsync -avz --progress --partial --append remote:~/myvideo.mp4 ~/; done

    For watching, I tried :

    mkfifo /tmp/fifo
    tail -f ~/myvideo.mp4 > /tmp/fifo
    mplayer /tmp/fifo

    But because rsync is stopping every 5 sec, it is working unstable.

    How to record and stream a remote cam continuously, and use only one network stream for that ?