Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (36)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (4752)

  • About real time video web streaming using ffserver(webm)

    29 avril 2016, par Potato

    I’m testing ffserver for real time streaming using web cam and mic.

    Use this ffserver conf

    HTTPPort 8090
    HTTPBindAddress 0.0.0.0
    MaxHTTPConnections 2000
    MaxClients 1000
    MaxBandwidth 1000000
    CustomLog -

    <feed>
    File /tmp/feed1.ffm
    FileMaxSize 1G
    ACL allow 127.0.0.1
    </feed>

    <stream>
    Feed feed1.ffm
    Format webm
    AudioBitRate 64
    AudioSampleRate 48000
    AudioChannels 1
    VideoCodec libvpx
    VideoSize 320x240
    VideoFrameRate 25
    AVOptionVideo flags +global_header
    AVOptionAudio flags +global_header
    PreRoll 15
    StartSendOnKey
    VideoBitRate 400
    </stream>

    and feed

    ffmpeg -f v4l2 -i /dev/video0 -f alsa - ac 1 - i hw:1 http://localhost:8090/feed1.ffm

    It’s okay when I approach with chrome http://IP_address:8090/live.webm

    But the problem is that the streaming shows little earlier moment, when I refresh the page. I think that’s not a delay problem.
    How can I use this for real time streaming.

    Regards.

  • Pre-Transcoding live streams before Re-stream them to wowza Streaming Engine [on hold]

    14 décembre 2017, par Ninja

    i’am using ffmpeg on other device to get live feed from cam and convert them to multi bitrate outputs localy and stream them to a remote wowza to achieve adaptive bitrate content for users with optimized resources i have succeeded to transcode to one specifique bitrate locally using this line

    ffmpeg -re -i cuted.mp4 -c:v libx264 -profile:v baseline -level:v 1.2 -r 12 -g 96 -vb 110000 -s 212x120 -c:a libvo_aacenc -ab 40000 -ar 22050 -ac 1 -f rtsp -muxdelay 0.1 rtsp://*****:*****@***.168.*0.*0:1935/live/myStream

    but i need at least 4 resolutions support i’ve tried to lunched twice at the same time with diffrent resolutions but in wowza engine manager => incoming streams i got one stream input, i appreciate any suggestion

  • 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