Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (79)

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

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (6670)

  • lavf/matroskaenc.c : add early support for colour elements

    7 mars 2016, par Neil Birkbeck
    lavf/matroskaenc.c : add early support for colour elements
    

    Adding early support for a subset of the proposed colour elements
    according to the latest version of spec :
    https://mailarchive.ietf.org/arch/search/?email_list=cellar&gbt=1&index=hIKLhMdgTMTEwUTeA4ct38h0tmE

    Like matroskadec, I’ve left out elements for pix_fmt related things
    as there still seems to be some discussion around these.

    The new elements are exposed under strict experimental mode.

    Signed-off-by : Neil Birkbeck <neil.birkbeck@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/matroskaenc.c
  • Record live stream using ffmpeg as Process in Java

    26 décembre 2020, par Serbroda

    I can not figure out how to start a Process in Java for recording a live stream with ffmpeg.

    &#xA;&#xA;

    I've tried several solutions, but my current code looks like this (simplified) :

    &#xA;&#xA;

    public void startDownload() {&#xA;    String[] processArgs = new String[] {&#xA;            "ffmpeg", &#xA;            "-i", &#xA;            "https://bitdash-a.akamaihd.net/content/sintel/hls/playlist.m3u8", &#xA;            "-c", &#xA;            "copy", &#xA;            "-bsf:a", &#xA;            "aac_adtstoasc", &#xA;            "C:\\temp\\test.mp4"&#xA;    };&#xA;    ProcessBuilder processBuilder = new ProcessBuilder(processArgs);&#xA;    try {&#xA;        process = processBuilder.start();&#xA;        process.wairFor(); // Do I need this? Actually the stream is running forever until I stop it manually.&#xA;        BufferedReader br = new BufferedReader(new InputStreamReader(process.getInputStream()));&#xA;        String line = null;&#xA;        while ((line = br.readLine()) != null) { // this blocks forever&#xA;            System.out.println(line);&#xA;        }&#xA;    } catch (IOException e) {&#xA;        e.printStackTrace();&#xA;    }&#xA;}&#xA;

    &#xA;&#xA;

    The problem is, that something blocks the process from starting. In this example the br.readLine() blocks it forever and I can not get any output from the process.

    &#xA;&#xA;

    But after killing the jar / stopping launch config in Intellij, the process begins to work and I have to kill it via task manager.

    &#xA;&#xA;

    Running a process that is not recording a live stream like just executing ffmpeg works by the way.

    &#xA;&#xA;

    I'm using Windows, JDK 14, IntelliJ.

    &#xA;

  • What is the best way to stream live video from OpenCV to browser (native codecs) ?

    29 avril 2017, par trojek

    I have a webcam and I get a video to OpenCV, then I want to stream modified video to the browser.
    Currently, I’m using jsmpeg which works well for low video resolutions.

    On this page I found the list of codecs which are natively supported by Safari, Chrome, Firefox, Opera and IE browsers. For example, H.264 is supported by above browsers.

    How can I prepare stream from OpenCV, GStreamer or FFmpeg in order to get live streaming ?