Recherche avancée

Médias (91)

Autres articles (86)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

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

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (5129)

  • avcodec : Replace local extern declarations for tables with header #includes

    15 août 2013, par Diego Biurrun
    avcodec : Replace local extern declarations for tables with header #includes
    
    • [DBH] libavcodec/binkaudio.c
    • [DBH] libavcodec/h263.h
    • [DBH] libavcodec/intrax8.c
    • [DBH] libavcodec/mpeg4video.h
    • [DBH] libavcodec/msmpeg4data.c
    • [DBH] libavcodec/svq1dec.c
  • mmal : Move system headers before local headers

    13 avril 2015, par wm4
    mmal : Move system headers before local headers
    

    Signed-off-by : Diego Biurrun <diego@biurrun.de>

    • [DH] libavcodec/mmaldec.c
  • ffmpeg failed to pull local rtmp stream

    3 septembre 2019, par edhu

    I’m relatively new to this workflow and this might be a simple problem to solve. However, I haven’t found answers that matched exactly with my question. I’ve set up my nginx server with rtmp module and for testing purposes I used the following command to publish my stream :

    ffmpeg -re -i  -vcodec libx264 -vprofile baseline -acodec aac -strict -2 -f flv rtmp://localhost/show/stream

    After that, I launched up my application which is supposed to read the stream from the nginx server and it failed at

    avformat_open_input(&amp;ctx, szFilePath, NULL, NULL);

    The returned error code is -5 and it signifies I/O issue. The szFilePath I passed in is rtmp://localhost/show/stream and I assume this will automatically work since it works when I tried to play some mp4 sample files online. I also tried rtmp://localhost:1935/show/stream and vice versa. I could view the stream being played in VLC but I can’t open it in the code. I’m not really sure what happened here. I feel like this isn’t necessarily a complicated issue but I don’t know where to start looking for possibles causes. I’d appreciate the help. Thanks !