Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (34)

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

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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (6463)

  • 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 ??

  • How to call ffmpeg of remote server with java

    16 août 2018, par user9151542

    I need to complete an interface in Java to implement video upload and compression.
    The compressed video can be played directly on the browser.I tried to install ffmpeg locally and use java to call, which is able to implement this function. But I don’t know how to call ffmpeg on a remote server

  • Streaming .mp4 File to http server

    8 octobre 2016, par Noshii

    I’m trying to stream a mp4 file to my http-server written in python. I’m using ffmpeg to stream it from the client with the following command :

    ffmpeg -s 640x480 -i video.mp4 -f mpeg1video -b 800k -r 30 http://localhost:9999

    Whenever i execute this command, i get the following warning / error :

    Option video_size not found.

    Tried googling it, but wasn’t able to found a working solution, most of them said I need to include the -s tag, which i already did, still getting the error tho. Does anyone know a fix for that problem ?