Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (9)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • Création définitive du canal

    12 mars 2010, par

    Lorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
    A la validation, vous recevez un email vous invitant donc à créer votre canal.
    Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
    A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)

Sur d’autres sites (3841)

  • C# Adding generic text to a video file

    14 juillet 2016, par Ozan Ayten

    I would like to add a Generics Text (like the texts you see when a movie ends, it slides down or up in a slow pace) to a video file. Hardsubbed.

    I’ve been experimented with few api but couldn’t manage to find a solution. Is this possible ? Is there a way to do it without the task getting too complicated ?

    As a side note : I want to add generic text like the Windows Movie Maker does. But I want to do it programmatically of course.

  • Record/Capture a discontinuous audio stream with ffmpeg

    29 août 2013, par d03090

    I want to record an audio stream using ffmpeg. The problem is, that this stream is not available over the whole timespan, that I want to record.
    I have a device which takes input from a microphone, encodes it and broadcasts a rtp stream. This device can be controlled to start and stop this stream via a button (or a telnet command).

    So basicly I want to start a recording session. ffmpeg should capture this rtp stream, if the stream is available. Otherwise silence audio should be recorded and when the stream is available again, it should record this stream again and so on.

    How can I achieve this ? When I start ffmpeg, it always aborts at the time the stream ends.

    For now my ffmpeg command just looks like this :

    ffmpeg -i rtp://192.168.2.255:3131 out.wav

    If this is not possible with a ffmpeg command what will be the best (or easiest) way to do this.

  • FFmpeg and PHP conversion does not end

    23 juin 2016, par Fernand Royale

    I’m using this php code to use ffmpeg.

    <?php

    echo "Starting ffmpeg...\n\n".'';


    echo  exec('/usr/src/ffmpeg/ffmpeg/ffmpeg -y -i movie.mp4 -i mark.png -filter_complex "overlay=10:10" -b:v 1500k -vcodec libx264 movie2.mp4 2> out.txt').'';

       echo "Done.\n";


    ?>

    But I have a problem the conversion does not complete.

    If I close the browser conversion ends

    Not a problem in the Apache configuration

    The conversion ends at different times. The original file has 40MB time the new file has 8MB sometimes 29MB

    How do you finish the conversion only when you are 100% complete.