Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (73)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (5230)

  • Live Stream Video using ffmpeg

    13 novembre 2019, par Mir Injamamul

    I am working with ffmpeg . i converted [something1].h264 file to [something1].m3u8 file. with this command

    ffmpeg -i /var/www/html/video1.h264 -f lavfi -i anullsrc=channel_layout=stereo:sample_rate=44100 -c:v copy -shortest -hls_list_size 0 -segment_list_flags +live /var/www/html/vid/out/video5.m3u8

    All i know the event type is VOD (video on demand) .

    1. I want make my converted file into live streaming format. So if anybody come to my link he will see from the moment he came , not from the beginning.
    2. how to make this live stream from chunk of video , suppose i have 2 video file , i want 2nd video will add in the live sream after the end of 1st video
      Any kind of help will be great
  • FFMPEG + PHP capture still from live video ?

    28 décembre 2022, par Tyris Audronis

    I'm trying to capture a new frame every X seconds from a live video on a local webserver using PHP and save it as an image file. Obviously, we have the normal thumbnail generation of

    


    $ffmpeg -i $vidFile -an -ss $time -s $size $imageFilename.


    


    But that is only for video files. What would be the way of doing that using a live stream ?

    


    I don't even know where to start on a livestream to do this...I'm using LAMP on an ubuntu server for this.

    


  • wowza + live + ffmpeg + hls player, how to create the playlist.m3u8 ?

    9 mai 2018, par Ziv Barber

    I’m trying to setup a wowza live test server and then I can play hls from my mobile app. It do work without any problem for vod. I can play it in my app. I can also see the .m3p8 file if I enter this uri in the browser.
    I tried to do the same in live mode (my goal is to test some streaming parameters for live streaming). I tried to use ffmpeg to create the live stream :

    ffmpeg -re -i "myInputTestVideo.mp4" -vcodec libx264 -vb 150000 -g 60 -vprofile baseline -level 2.1 -acodec aac -ab 64000 -ar 48000 -ac 2 -vbsf h264_mp4toannexb -strict experimental -f mpegts udp ://127.0.0.1:10000

    I created a "source file" and connected it to the "Incoming Streams".
    I can see in my application’s Monitoring / Network tab that it do getting the data from ffmpeg.

    My problem is how to get the playlist.m3p8 file so I can play it from inside my app (hls based) ?

    Again, for now I need a way to test playing with the streaming settings and in real live I’ll have a real live streaming source.