Recherche avancée

Médias (91)

Autres articles (76)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (4968)

  • How to download live streaming videos with HTTP .flv url

    20 février 2017, par Sajjad Darvishi

    I just wanted to record a live stream by downloading this link but it did’nt work by curl , ffmpeg and wget please help me how can i record this ?

    http://uhs-akamai.ustream.tv/dal09/dal09-uhs-live02/live/22505108/1487587571614/plain/uhs/1/chunk_1487590613_79324dc9f7.flv

  • How to capture iOS camera and publish RTMP live stream ?

    30 mai 2014, par Smeegol Xie

    I have completed an RTMP player on iOS, using FFmpeg to decode flv1 video and speex audio. Now I want to capture iOS camera and decode H.264 video and AAC audio, then publish video and audio stream to RTMP server, Red5 server as the player programe used before. I know that I should recompile FFmpeg, adding libx264 and libaacplus to support iOS video and audio decoding. But then how to publish RTMP live stream ? Using RTMP_Write() ? RTMP_SendPacket() ? Please just tell me some thoughts or solutions, or it’s very generous of you to show me some code. Thanks !

    Reference : capture camera and publish video with librtmp

  • SOLVED - IP camera - Reading live ASF video stream

    30 mai 2014, par Emmanuel Brunet

    I’m trying to read a video stream from an IP camera and store it on disk as several sequential files in MP4 format. I’m using Debian 7.5 with ffmpeg 2.2.

    Let’s assume the camera DNS name is webcam and, the user account / password is account / password

    Input

    the camera input stream is

    ffprobe http://account:password@webcam/videostream.asf

    Input #0, asf, from 'http://account:password@webcam/videostream.asf':
     Duration: N/A, start: 0.000000, bitrate: 32 kb/s
       Stream #0:0: Video: mjpeg (MJPG / 0x47504A4D), yuvj422p(pc), 640x480, 25 tbr, 1k tbn, 1k tbc
       Stream #0:1: Audio: adpcm_ima_wav ([17][0][0][0] / 0x0011), 8000 Hz, 1 channels, s16p, 32 kb/s

    ffmpeg conversion

    This command opens the output file but doesn’t read / write anything.

    ffmpeg -y -i http://account:password@webcam/videostream.asf -t 30 -c:v libx264 -c:a libfdk_aac -f mp4 ~/output.mp4

    The process completes successfully and writes 1.1M to the output file.

    Issue

    When I open the /output.mp4 video (in totem), no image is displayed but a gray background but the progess bar moves forward until the end of the video.

    Any idea ?

    for reminder I also would like to save data to a disk file which upon a predefined amount of time should rotate to another output file.

    Thanks in advance