Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (45)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

Sur d’autres sites (8138)

  • Merge commit ’ec4c48397641dbaf4ae8df36c32aaa5a311a11bf’

    4 mars 2016, par Derek Buitenhuis
    Merge commit ’ec4c48397641dbaf4ae8df36c32aaa5a311a11bf’
    

    This is a no-op. API is already implemented by us.

    * commit ’ec4c48397641dbaf4ae8df36c32aaa5a311a11bf’ :
    lavf : add a protocol whitelist/blacklist for file opened internally

    Merged-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>

  • m3u8 on ios and safari, firefox

    9 octobre 2013, par user2741735

    I'm implementing the HTTP Live Streaming protocol. I have successfully created .ts and .m3u8 files using ffmpeg and mediastreamsegmenter(using terminal) from IP Camera input. Now, when I play these files on ios using MPMoviePlayerViewController the m3u8 file doesn't play. Do I need to do some additional stuffs to play these files so that the simulator and browser could understand those file types.

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