Recherche avancée

Médias (91)

Autres articles (37)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

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

  • How to combine multiple ffmpeg streams into a single 4x4 collage ?

    16 mars 2013, par CoryG

    I have a server with 16 video capture card channels coming into it and want to stream them with ffmpeg, is it possible to have another stream going out that is a 4x4 collage of the 16 unique channels ?

    Edit : Adding a bounty since no working answer has been submitted yet - will reward it to the first one that can show the code to produce a 4x4 grid of 16 live channels (input device being http:// localhost:8090/x.mpg where x= a number 0-15, 352x288 video in MPEG1VIDEO format, YUV420P color at 24-30FPS) - or code that leads me to that solution - the output will be located at http:// localhost:8090/all.mpg and will be a 1408x1152 mpg live stream.

  • FFmpeg How to write video to a file

    9 décembre 2014, par NoviceAndNovice

    What i want is

    1. Get video packet from stream source
    2. Decode it
    3. And write  that decoded data as video file(avi, mpeg etc)

    I can able to get video Packets from a file (as AVPacket) and also can decode and save as an image.(raw)( FFmpeg tutorials show how to do it).
    But i can not ( do not know ) write that video data to a file(other) which can be played by media players(such as VLC).

    Best Wishes

    Ps : Real code samples will be great if possible...

    Now i make test with av_interleaved_write but i got strange error "non monotone timestamps" ( i have no control over pts values of media source )

    Some Extra Info

    In FFmpeg I have to

    1. Read media packets from media source ( it may be real file(.avi,mov) or even rtsp server).
    2. Then write those media packets to a real file (physical .avi, .mov etc file)

    I need reader and writer. I can read the media source file ( even encode packets according to given format). But i can not write to file...(which any player can play)

    And some pseudoCode

    File myFile("MyTestFile.avi");

    while ( source ->hasVideoPackets)
    {
        packet = source->GetNextVideoPacket();
        Frame decodedFrame = Decode(packet);
        VideoPacket encodedPacket = Encode( decodedFrame);
        myFile.WriteFile(encodedPacket);
    }

    Or Just write the original file without encode decode

        File myFile("MyTestFile.avi");

        while ( source ->hasVideoPackets)
        {
            packet = source->GetNextVideoPacket();
            myFile.WriteFile(packet);
        }

    Then

    I can able to open MyTest.avi file with a player.
  • MPEG-TS, Android and FFMPEG

    31 janvier 2013, par STeN

    I am receiving the MPEG-TS (MPEG transport stream) packets with the multiplexed H.264 video and AAC audio streams. I need to be able to show the audio and video on the Android phone. My assumption is that I need :

    • MPEG-TS de-multiplexer
    • AAC decoder
    • H.264 decoder
    • Synchronize the audio and video playback

    Assuming that I am right then (in Android 2.x) MPEG-TS de-multiplexer is not part of the OS and must be ported, both AAC and H.264 decoder are part of the Android OS, but I am not sure if they have interface, which allows passing the data in buffers and if they allow mutual timing synchronization. In the worst case those components must be ported here as well.

    Can you give me some advices where to start ? I was thinking about the FFMPEG porting. Are there any other ways ?

    Regards,
    STeN