Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (112)

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

  • Déploiements possibles

    31 janvier 2010, par

    Deux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
    L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
    Version mono serveur
    La version mono serveur consiste à n’utiliser qu’une (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (6022)

  • rtsp to rtmp using gstreamer with H.264 AAC

    6 décembre 2017, par Chakri

    I am looking at suitable gstreamer-1.0 command to convert RTSP(H.264 + AAC) stream to RTMP.

    I have tried using FFMPEG as below :

    ffmpeg -i rtsp ://localhost:9990/test.mp4 -c copy -f flv rtmp ://localhost:1935/nginxapp/11001010__HP36626HEHH88__1

    And it works fine.

    But when I tired with gstreamer-1.0 command as below :

    gst-launch-1.0 mux. ! rtmpsink location="rtmp ://localhost:1935/nginxapp/11001010__HP36626HEHH88__1" rtspsrc location=rtsp ://localhost:9990/test.mp4 latency=200 name=demux demux. ! rtph264depay ! flvmux streamable=true name=mux demux. ! rtpmp4gdepay ! mux.

    The video plays well but in audio it gives jitters like play/pause/play/pause...

    I have used VLC player as client to play RTMP url :

    rtmp ://localhost:1935/nginxapp/11001010__HP36626HEHH88__1

    I am looking at particularly gstreamer command as we need to wrap this feature with gstreamer bindings along with other use cases.

    Please let me know if there is some stable approach to convert RTSP to RTMP or if something mismatch in my above gstreamer-1.0 command

  • Android : Live Stream RTMP/RTSP Player without using webview (WOWZA server)

    3 février 2014, par SweetWisher ツ

    I am developing an android application in which i want to publish as well as stream a video..

    What I want is :

    1. My app record a video and that video is sent to server

    2. The recorded video will be streamed live to another android device at the
      same time..

    I have completed the first task using javac and ffmpeg

    I am stuck in second task.. i have searched a lot to stream the video from server but didn't succeed..

    I don't want to use WebView and play the video in It. I want RTMP player ..

    This task has been completed in iOS.. I want dame for Android..
    Can anyone suggest me some link to fulfill my task ???

    P.S. :

    I am using wowza server and RTMP stream.. I would like to stream RTMP video(.flv).. If no solution available. I would like switch to RTSP and for that also, need a working link to follow..

    EDIT :

    Now I have switched to RTSP player [with wowza server] as i have not found RTMP player without webview. So can anyone help me with my issue ??

  • Convert and download m3u8 to mp3 in Android [on hold]

    27 novembre 2017, par Guru

    I wanted to download mp3 and mp4 file from an available m3u8 file in Android. So I used the ffmpeg library to do the work.Thanks to AmirHadifar

    Using the ffmpeg method I am able to download the mp4 file

    ffmpeg -i in.m3u8 -acodec copy -bsf:a aac_adtstoasc -vcodec copy out.mp4

    Using this same code I am unable to download the mp3 from m3u8 file. Can someone point me to the proper way to download the mp3 file from m3u8 using ffmpeg