Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (50)

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

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

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (6129)

  • How to keep compatibility when compiling ffmpeg with android ndk

    2 novembre 2015, par Fido Zhang

    I have successfully compiled ffmpeg as a static library for my project with android-platform 19 which specified in Application.xml as below :

    APP_PLATFORM := android-19

    I test my project on a device(4.4),it runs well. But it will crash on 4.0 devices.

    So I would like to changed the APP_PLATFORM to a lower version like :

    APP_PLATFORM := android-17

    But the ide comes out an error like this.

    libavcodec/ffv1enc.c:631: error: undefined reference to 'log2'

    And when I changed it to a more lower version :

    APP_PLATFORM := android-8

    More errors occured :

    libavcodec/ffv1enc.c:631: error: undefined reference to 'log2'
    libavutil/mem.c:94: error: undefined reference to 'posix_memalign'

    I know the log2 reference is undefined because of missing libm, but as far as I see Android will automatic link to libm when building.http://mobilepearls.com/labs/native-android-api/ndk/docs/STABLE-APIS.html

    So how can I keep compatibility when compiling ffmpeg in order to run my project well on lower version devices.

  • Anomalie #2521 : Images dans upload et portfolio

    3 février 2012, par Suske -

    J’ajoute :

    En passant par le module documents de spip3, on peut insérer en quelques secondes 500 photos issues de /upload (c’est testé et rapide !) mais après, une fonctionnalité permettant un traitement global, par paquets de docs, serait un grand plus. Genre pouvoir sélectionner ou indiquer un (...)

  • How to configure ffmpeg for streaming videos from Red5 into Youtube using youtube-v3-api ?

    28 mai 2018, par Alfonso Valdes

    You’ll see my problem is next :

    Currently I’m working to configure youtube-v3-api for live streaming of .flv videos on my Youtube channel using Red 5 service as stated on next link https://www.red5pro.com/docs/server/ffmpegstreaming.html, this is using next commands for streaming on Linux :

    ffmpeg  -i rtmp://127.0.0.1:1935/live/streamname live=1 timeout=2 -vcodec libx264 -s 640x480 -vb 500k -acodec libfdk_aac -ab 128k  -f flv rtmp://a.rtmp.youtube.com/live2/{Stream name/key}


    ffmpeg -rtsp_transport tcp -i rtsp://127.0.0.1:8554/live/streamname -acodec copy -vcodec copy -f flv rtmp://a.rtmp.youtube.com/live2/{Stream name/key}

    On this, neither RMTP nor RTSP protocols are working for streaming. Also, I have tried several codecs for audio and video configuring different sizes for each one of them, but none of those have worked.

    The root streaming videos are generated by an IOS/Android app still on development phase.

    The problem comes when no video is displayed on Youtube screen, regardless the video is being sent by Red5 (I confirmed this on my Red5 dedicated server on AWS) and received correctly by Youtube (confirmed by validating on Console), so I have come into a dead end on which I hope you could help me get through.

    Any idea of what could be a possible solution ?

    Thank you.