Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (96)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

Sur d’autres sites (7959)

  • Facebook live video can only be previewed while streaming my Mac screen

    24 janvier 2017, par iownthegame

    I use the following ffmpeg command to share my screen streaming to Facebook.

    enter image description here

    ffmpeg -f avfoundation -r 10 -video_size 352x288 -i "0" -c:v h264 -f flv
    "rtmp://rtmp-api.facebook.com:80/rtmp/1269140699772419?ds=1&a=AaYsXcYcdHQrrrUF"

    then I can see the video preview scenes
    enter image description here

    however, once I press the ’Go Live’ button, and go to my facebook page, I can find a post said I am Live Now. When I press the ’play button’, there are only black scenes that last for 1 2 seconds, and the video ends.

    enter image description here

    And there is also a weird thing, the video can be played when I end up the live stream. When refreshing the page, I can find a post said I was Live, the video of this post can be played successfully.

    Anyone knows why the video can be watched when previewing and finishing live but not the exact live moment ?

    [updated]

    During the live streaming period, if I press the play button, there are only 1 2 seconds black scenes and the live stream ends.
    enter image description here

    However if I press the video frame again, another modal pops up then I can see the live streaming. Is it a facebook bug ?
    enter image description here

  • How to watch or download periscope live streams from start ?

    10 septembre 2019, par Sanchit

    I am trying to figure how watch/download a periscope livestream from it’s starting point. The app doesn’t let go back more than 2 minutes so I tried downloading as someone told me it downloads from beginning but it didn’t. It started from the current time.

    I tried running :

    youtube-dl https://www.pscp.tv/w/b_7KWDFyYVFaeFhCTXhaanp8MXluS09Sd05QRFZ4Uuj5klcOLvuiNqQPC2PcorcMlZOwD3uZyIP7o-UXVYNi

    I get

    https://prod-fastly-ap-south-1.video.periscope.tv/Transcoding/v1/-/chunk_1563350917969725824_36817_a.ts?type=live

    https://prod-fastly-ap-south-1.video.periscope.tv/Transcoding/v1/-/chunk_1563350926386273572_36818_a.ts?type=live
  • ffmpeg rtmp webcam live stream iphone/pad segment size too big

    1er février 2013, par Foo Barazz

    I'm transcoding a rtmp stream from a red5 server for use to live stream on a iphone or ipad device. I built latest ffmpeg version from git repo using the built in segmenter to create .ts files and m3u8 playlist file using the following :

    ffmpeg -probesize 50k -i "rtmp://localhost/oflaDemo/red5StreamDemo live=1" \
    -c:v libx264 -b:v 128k -vpre ipod320 -flags -global_header -map 0 \
    -f segment -segment_time 3 -segment_list foo.m3u8 -segment_list_flags +live \
    -segment_list_type m3u8 -segment_list_size 5 -segment_format mpegts foo%d.ts

    This works fine, but I can't get the segment size smaller than about 12 sec even set to 3 (-segment_time 3). It seems to be caused by libx264 vcodec.
    Am I missing any flag ?

    By the way, you can simple run the ffmpeg command above successfully by starting red5 SimpleBroadcaster example.