Recherche avancée

Médias (91)

Autres articles (81)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (11536)

  • 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

  • tag refuses to play mp4 video converted from MOV

    27 décembre 2014, par MightyPork

    I have a video I want to embed using the html5 video tag :

    I’ve converted it using ffmpeg :

    ffmpeg -i P6135199.MOV -vcodec libx264 -acodec aac helios.mp4

    And I try to embed it as follows :

    <video src="helios.mp4" controls="controls">Get a better browser!</video>

    However, Chrome doesn’t play the video, only offers to download it (same as it did before I converted the video). Firefox has the same problem.

    I’ve tested and other mp4 files (from my phone) play just fine.

    What’s the problem ? Did I convert it wrong ?

  • How to play video at exact seek time ?

    3 mai 2016, par RanceA

    I was working on a video player of an app and I ran into a problem.

    I need a video’s playing cycle locked into a specified time interval. For instance, I need a video loop to play from 00:04 to 00:08.

    My dilemma is, the video only has keyframes at 00:00 and 00:10, MediaPlayer.seekTo(4000) will seek the start time to 00:10 which is not what I expected. I need the video to play at a precise time, 00:04 to 00:08, not 00:00 to 00:10.

    FFPlay also supports AVSEEK_FLAG, but none of the flags seem to work in my case.

    Maybe playing at 00:00 then fast-forward encoding to 00:04 is a good idea, but I have no idea how to implement that. My FFMPEG experience is poor.

    Any help would be greatly appreciated.