Recherche avancée

Médias (1)

Mot : - Tags -/wave

Autres articles (83)

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

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (11637)

  • 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 ?

  • How to rescale input video then scale and overlay watermark with Ffmpeg ?

    22 juin 2017, par CurlyFro

    How to rescale input video then scale and overlay watermark with Ffmpeg ?

    I’ve tried both these commands and they don’t work. Can someone help me with the process ?

    -vf \"movie={watermarkPath}[watermark]; [in] scale=720:-1 [scale]; [scale] [watermark] overlay=main_w-overlay_w-10:10 \"
    -filter_complex \"[0:v]scale={wm.Item3}:{wm.Item4}[bg];[bg][1:v]movie='{watermarkPath}'[wm];[wm][0] scale2ref={wm.Item1}:{wm.Item2}[wm] [v];[wm] setsar=1[logo];[v] [logo] overlay=main_w-overlay_w-10:10\"
  • What is download speed i need to watch a video of bitrate 6130 kbps ???Also does my upload speed has anything to do with it ?

    1er juillet 2017, par Tsurgi Blade

    I want to download a HLS using ffmpeg it has many program ID in playlist but i want to download this specific stream with program id 0.

    I am using -map 0:p:0 to download it but im getting bitrate of around 3000 kbps no where near to the in info...ffmpeg snapshot

    how do i get the bitrate mentioned i.e 6130 kbps....
    My download speed is around 32 Mbps= 4 MBps....
    Does it have anything to do with my upload speed ???
    Also after sometime ffmpeg says "not recieving playlist 1" and bitrate drops ???how to avoid it ??

    Thks