Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (99)

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

  • How to setup HLS Live Video Streaming from iOS Device

    9 septembre 2017, par Sean

    Good day everyone !

    So, as the title suggests, i am developing an app with similar functionality to that off Periscope and Facebook Live video streaming. Here is what the end goal is :

    • A Broadcasting device [user]
    • EC2 Instance [Hosting an ffmpeg transcoder]
    • Cloudfront Distrubution [CDN]
    • 1 to n viewers of the live feed

    I’ve been doing a lot of googling and what I cant seem to figure out is :

    As you send chunks of video to the server from the Broadcaster, how do
    you create an
    .m3u8 playlist when you don’t have all the chunks of video yet (e.g. the
    device sends its first 5second chunk of video) ?

    It seems a .m3u8 file is created from a .mp4 file that is already complete, then broken down into chunks... But i’m sending chunks of the video to the server, how can it generate the .m3u8 file when more chunks are still coming from the Broadcaster, so the watchers / clients can continuously stitch together the video chunks ?

    I’ll be happy to clarify this question further. Thanks !

  • Live Streaming to AMS using Ffmpeg not playing in mobile browser

    6 mai 2016, par Gaurav Bora

    I have installed Ffmpeg and am streaming a video to my adobe media server (Rtmp url) usinf Ffmpeg. The stream is playing in desktop browsers but not on mobile browsers. When I use OBS to stream to the same Rtmp url, it plays in both laptop and mobile browsers. The command that I use to stream using Ffmpeg and which is working in desktop browsers is

    ffmpeg -re -i samplefile.mp4 -c:v copy -c:a copy -f flv "rtmp url of my adobe media server/streamkey"

    TIA

  • Android Live Streaming based on javaCV + FFMpeg crashes by adding red5 link

    1er octobre 2015, par user1914692

    The Android application code is from :
    Android Live Streaming courtesy of JavaCV and FFMPEG

    It streams the live camera video from the device.

    I follow one comment’s instruction (Yoshio Numai), to use Red5 as the stream server.
    By Red5 itself, I can successfully use simpleBroadcaster and simpleSubscriber to stream and display the live camera (from the computer) steam.

    In the MainActivity.java, I change the code as below :

    private String ffmpeg_link = "rtmp://192.168.1.105/oflaDemo/red5StreamDemo";

    And I can start the app in my Android device (Nexus 4).
    after click "start", the app crash, pops out a small window, saying :
    "Unfortunately, JavaCV 0.3 Stream Test has stopped. OK."

    Once I click the OK button, I find the app is still live in the task list.

    But the same thing will happen.
    What’s wrong here ?