Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (97)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (10486)

  • FFmpeg : How to convert vertical video with black sides, to video 16:9, with blurred background sides

    10 avril 2017, par Andrey

    Vertical video with blurred background sides

    How to make this by using FFmpeg ?

    Example without FFmpeg :
    Adobe After Effects
    Sony Vegas Pro

  • ffmpeg cache whole video stream and save

    19 juillet 2016, par Luiz

    I have a security DVR that can stream a video recording using the RTSP protocol. I can record the playback using ffmpeg and save it to a file, but for a 20 min video, I have to watch the video to save or wait the whole playback time.
    I’m using :

    ffmpeg -i "rtsp://mystream" -r 15 -acodec copy -vcodec copy myvideo.mp4

    to do this

    Is there any way to buffer the whole stream and just save it to a file using ffmpeg, without the need to watch or wait the whole 20 minutes playback ? I don’t need to reencode anything since the stream video format is good enough for me.

    Thanks in advance

  • ffmpeg rtsp over http not working

    17 novembre 2017, par kooli

    I put this conf on ffserver

    HTTPPort 1234
    RTSPPort 1235
    <stream>
    Format rtp

    Feed feed1.ffm
    VideoCodec libx264
    VideoFrameRate 24
    VideoBitRate 100
    VideoSize 480x272
    AVOptionVideo flags +global_header
    </stream>

    I stream with this command

    ffmpeg -i file.h264 http://127.0.0.1:1234/feed1.ffm

    When I watch this stream I can watch via udp and tcp on this url :

    rtsp://127.0.0.1:1235/live.h264

    but i want to stream with rtsp over http(http tunneling).

    How can I do it please ??