Recherche avancée

Médias (0)

Mot : - Tags -/auteurs

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

Autres articles (67)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

  • encoding jpeg as h264 video

    22 février 2017, par jefftimesten

    I am using the following command to encode an AVI to an H264 video for use in an HTML5 video tag :

    ffmpeg -y -i "test.avi" -vcodec libx264 -vpre slow -vpre baseline -g 30 "out.mp4"

    And this works just fine. But I also want to create a placeholder video (long story) from a single still image, so I do this :

    ffmpeg -y -i "test.jpg" -vcodec libx264 -vpre slow -vpre baseline -g 30 "out.mp4"

    And this doesn’t work. What gives ?

    EDIT : After trying LordNeckbeards answer, here is my full output : http://pastebin.com/axhKpkLx

  • RTMP AVPacket from NAL Units iOS

    10 février 2019, par Mihai Ghete

    I’m writing video frames to a file (for hardware acceleration H264 encoding purpose) and reading the data from there while the writing is still happening. Long story short, I get the NALUs for every frame. My question is how to pass the NALUs to the AVPacket (FFmpeg’s AVPacket) data parameter in order to send it over the network using the RTMP protocol.

    What I do is append every NALU (on iOS, every frame is composed of 1 or two NALUs) and set it to the AVPacket data parameter, but it doesn’t seem to work. Ideas ? thanks.

    I use this method to set the packet data : H264 Video Streaming over RTMP on iOS

  • RTMP AVPacket from NAL Units iOS

    5 novembre 2014, par Mihai Ghete

    I’m writing video frames to a file (for hardware acceleration H264 encoding purpose) and reading the data from there while the writing is still happening. Long story short, I get the NALUs for every frame. My question is how to pass the NALUs to the AVPacket (FFmpeg’s AVPacket) data parameter in order to send it over the network using the RTMP protocol.

    What I do is append every NALU (on iOS, every frame is composed of 1 or two NALUs) and set it to the AVPacket data parameter, but it doesn’t seem to work. Ideas ? thanks.

    I use this method to set the packet data : H264 Video Streaming over RTMP on iOS