Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (111)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (7914)

  • Open source media server for web service.

    20 février 2016, par Scarface

    I am currently building a website where users can listen to music, and watch videos. However, I am worried about the media content(music/videos) being downloaded from the website(I initially stuck to the HTML5 video/audio tags), I did a little research and found that my best option to prevent this was by using a media server, I have search for free open source media servers to use, but none seem promising. I thought my best bet was ffmpeg, but I am scared to use it as there it seems to be no longer maintained. Does anyone know of any good media servers out there I could use ?

  • Problems with uploading files on red5-server and ffmpeg

    3 novembre 2015, par Николай Кондратюк

    We have configured red5-server and ffmpeg. And I was trying to upload video via UI.

    Everything works good with small video files. But when I trying to upload large video (more than 15M) this video is uploading again and again without any errors. Maybe it is some limits ?

  • ffmpeg send intra and gop over a traditionnal tcp (or udp) server

    27 décembre 2015, par the-owner

    The Problem :
    I want to stream a continuous sequence of bitmaps (a video if stuck).
    I want to send the stream over a QTcpSocket/Server (or a QUdpServer why not, or a traditional tcp/udp server), and with the help of ffmpeg librarie.

    Context and Conditions :
    I code in C++, under msvc2013 win-32, QT-IDE, ffmpeg dev 2.8.3.
    We start with a bitmap which is a raw format, a result from GDI+ that I have gotten.
    For very low client connection, so I will use a light video format compression MPEG-1.
    I already have a TCP-Server (QTcpServer), so my goal is to not rebuild another Server for it ...

    Potential algorithm ? :
    I have thought more on the encoding question than the procole one, assume that the protocol could be good.
    It is the very first time that I do it, I don’t want to enroll into something impossible, and obviously I want your insight about this problem which I think since last month (which I have not found a good answer on internet). So, below the outlines of the algorithm that I have imagined :

    Server Side :

    1. I convert the first BMP to YUV format thanks to sws_scale (), we name it P in the following (ffmpeg - libswscale)
    2. I (MPEG1-)encode the picture P (with avcodec_encode_video2()) I get the datas encoded
    3. I serialize the AVFrame/AVpicture P (maybe we will do this step just once)
    4. In the same time I push the datas into a QByteArray (or a simple byte array ?)
    5. I compress P (maybe with QCompress why not)
    6. I send it to the clients.
    7. If the step 6 goes well : we return to number 1 if the next image is a modulus of k, it will be an Intra otherwise a GOP
    8. Otherwise, I wait ? Or I can take into account the lost frame within the code, and I could jump it ? (Inside these question there are questions of server protocols)

    Client Side (summarized)

    1. We get the datas (new Intra or GOP),
    2. We check the error function on the datas received with respect to the other datas received
    3. If the error function return :
    4. "The Error is OK with this new Intra/GOP received" we start decoding them with ffmpeg, and we display the next image of the livestream.
    5. Otherwise, error is not OK, we take the error into account ... (it is not my main problem here)

    Questions :

    It is a solution that I imagined, If the question of server/client protocol are solved, my algorithm is it viable in order to do a livestream ? Could it work ? Is there a better solution ? (another more simpler algorithm or another librarie than ffmpeg for example or something else ?) a link ? Of course critics on my server protocol are welcome.

    I remind, it is just the outlines.