Recherche avancée

Médias (91)

Autres articles (62)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (12012)

  • streaming a webcam feed over rtsp using ffmpeg & ffserver to an android client

    26 juillet 2015, par Coyote

    I am trying to stream my webcam over rtsp and open the stream using android.
    I managed to get the first part working (rtsp stream) using ffserver and ffmpgeg. Here is my ffserver.conf file :

    HTTPPort 8000
    RTSPPort 8001
    HTTPBindAddress 192.168.1.74
    RTSPBindAddress 192.168.1.74
    MaxClients 100
    MaxBandwidth 10000
    NoDefaults

    <feed>
      File /tmp/witty.ffm
      FileMaxSize 20M
    </feed>

    <stream>
      Feed witty.ffm
      Format rtp
      VideoSize 640x480
      VideoQMin 1
      VideoQMax 20
      VideoFrameRate 30
      VideoBitRate 500
      AVOptionVideo flags +global_header
      VideoCodec libx264
      AVPresetVideo baseline
      NoAudio
    </stream>

    ffserver :

    ffserver -f -d ffserver.conf // luch the server

    and then I use FFmpeg to open the webcam (Mac OS)

    ffmpeg -f avfoundation -i "default" http://192.168.1.74:8000/witty.ffm

    I can open the stream from VLC but on android using a videoView i am getting an error (1,-38) and an alert view saying "can’t play this video".

  • libvpx doesn't create .pc files

    17 novembre 2013, par olgash

    I'm trying to compile ffmpeg with libvpx. Libvpx compiles nicely, with no errors other than it couldn't create debug for win32 because I don't have visual studio 8 (which I think is fine ?), but it doesn't create any .pc file in MinGW's lib folder (which all of the other libraries I've installed do).

    When I run ./configure —disable-encoder=vorbis —enable-libvorbis —enable-libvpx —prefix=/MinGW on ffmpeg, it always says my version of libvpx is too old even though I'm using 1.2.0. I'm not sure what to do here, help ?

  • RTSP streaming on Android client using FFMpeg

    7 février 2021, par rurtle

    I am working on a hobby project the goal for which is to develop an Android application capable of streaming live feeds captured through web cams in a LAN setting using FFMpeg as the underlying engine. So far, I did the following -

    &#xA;&#xA;

    A. Compiling and generating FFMpeg related libraries for the following releases -

    &#xA;&#xA;

    FFMpeg version : 2.0
    &#xA;NDK version : r8e & r9
    &#xA;Android Platform version : android-16 & android-18thisthisthisthis
    &#xA;Toolchain version : 4.6 & 4.8
    &#xA;Platform built on : Fedora 18 (x86_64)

    &#xA;&#xA;

    B. Creating the files Android.mk & Application.mk in appropriate path.

    &#xA;&#xA;

    However, when it came to writing the native code for accessing appropriate functionality of FFMpeg from the application layer using Java, I'm stuck with following questions -

    &#xA;&#xA;

    a) Which all of FFMpeg's features I need to make available from native to app layer for streaming real-time feeds ?
    &#xA;b) In order to compile FFMpeg for Android, I followed this link. Whether the compilation options are sufficient for handling *.sdp streams or do I need to modify it ?
    &#xA;c) Do I need to make use of live555 ?

    &#xA;&#xA;

    I am totally new to FFMpeg and Android application development and this is going to be my first serious project for Android platform. I have been searching for relevant tutorials dealing with RTSP streaming using FFMpeg for a while now without much success. Moreover, I tried the latest development build of VLC player and found it to be great for streaming real-time feeds. However, it's a complex beast and the goal for my project is of quite limited nature, mostly learning - in a short time span.

    &#xA;&#xA;

    Could you suggest some pointers (e.g. links, documents or sample code) on how can I write the native code for utilizing FFMpeg library and subsequently use those functionality from the app layer for streaming real-time feeds ? Moreover, will really appreciate if you could let me know the kind of background knowledge necessary for this project from a functional standpoint (in a language agnostic sense).

    &#xA;