Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (29)

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

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

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

Sur d’autres sites (2456)

  • live streamming using ffmpeg for more than stream on the same time

    29 novembre 2016, par بسمة أمل

    I’m using this command to stream video in ffmpeg but when I stream more than 3 or 4 streams at the same time interruption happen although the process in my device doesn’t exceed 50%
    I tried to use ffmpeg lib for each stream but interruption still happened

    this is my command :

    ffmpeg -re -i test.mp4 -i logo.png -vcodec libx264 -pix_fmt yuv420p -vb 2000000 -g 60
    -vprofile main -acodec aac -ab 128000 -ar 48000 -ac 2 -vbsf h264_mp4toannexb
    -strict experimental -filter_complex "[0][1]overlay=0:0"
    -pass 1 -f mpegts udp://127.0.0.1:1234?pkt_size=1316
  • Play RTP stream on Android

    11 décembre 2016, par Othman Mohammad

    I’m using ffmpeg to stream microphone to an Android application.
    So far, I successfully managed to stream the audio (Test it with ffplay and VLC) :

    ffmpeg -ar 48000 -f alsa -i hw:0 -acodec mp2 -b:a 384k -f rtp rtp://127.0.0.1:1234

    Now how can I play the stream on an Android application ?

    Thank you

  • Unable to run ffmpeg command in string

    9 avril 2014, par Yuvraj Kakkar

    I try to run ffmpeg command in java via this string

    String cmd="ffmpeg -i rtmp://IP/live/1234 -f flv rtmp://IP/live/1234_56"
    Runtime.getRuntime().exec(cmd);

    The above command execute properly but when I try to execute following command it gives error

    String instream="'rtmp://IP/live/1234 live=1'";
    String cmd="ffmpeg -i "+instream+" -f flv rtmp://IP/live/1234_56'"
    Runtime.getRuntime().exec(cmd);

    Output >'rtmp ://IP/live/1234 : Invalid argument

    The original command that runs directly on ffmpeg is

    ffmpeg -i "rtmp://IP/live/1234 live=1" -f flv rtmp://IP/live/1234_56

    Kindly suggest how to run live=1 argument in ffmpeg via String