Recherche avancée

Médias (1)

Mot : - Tags -/remix

Autres articles (108)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (12062)

  • Do i need a client to stream data ?

    28 novembre 2017, par Adalcar

    I am writing a web interface for a set of cameras using ffmpeg.

    The issue comes when trying to stream this data :
    after shamelessly ripping this code, replacing the ip with localhost for testing purposes, I tried to read the stream with VLC, to no avail : the server side runs without problem but the packets seem to disappear in thin air.

    That’s when I open the server with

    avio_open2(&server, "udp://localhost:554", AVIO_FLAG_WRITE, NULL, &options);

    If I use rtsp instead, it has the decency of failing with "unknown protocol" (?)

    and for http, it pops an unknown error.

    Do I need a client request to start streaming ?

  • Can I somehow embed location data into a video file in android ?

    29 juillet 2013, par Alex

    Can I somehow embed location data into a video file in android ?

    Currently my app creates a video file and gets location info but I have no idea if it is possible to embed location info (lattitude, longitude) into my video file.

    I could use ffmpeg or whatever for that (I'm using ffmpeg for some operations on my video).

    Alas, I have not a slightest idea how to embed GPS data into my video, if at all possible.

  • avformat/aadec : Avoid copying data around

    5 décembre 2021, par Andreas Rheinhardt
    avformat/aadec : Avoid copying data around
    

    Up until now, the packets have been read in blocks of at most
    eight bytes at a time ; then these blocks have been decrypted
    and copied into a buffer on the stack (that was double the size
    needed...). From there they have been copied to the dst packet.

    This commit changes this : The data is read in one go ; and
    the decryption avoids temporary buffers, too, by making
    use of the fact that src and dst of av_tea_crypt() can coincide.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavformat/aadec.c