Recherche avancée

Médias (91)

Autres articles (61)

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

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (5243)

  • [iOS]Use ffmpeg to add watermark(overlay) for video with image : JPG is OK, bug PNG is not useful 

    2 avril 2017, par WellBeing

    My test platform is iPhone.

    Some one told me to install zlib and libpng,

    and then rebuild ffmpeg with —enable-decoder=png —enable-encoder=png,

    but it is no useful,

    Use "ffmpeg -codecs" command, I find that the PNG decoder is exist.

    There is no problem when use JPG file, but PNG file is no useful

    I can’t see anything about watermark on the video

    The last log is :

    Generic error in an external library

    If the problem is on building of ffmpeg, how can I fix it ?

    Thank you very much !

  • HLS and ffmpeg - losing audio ?

    12 octobre 2015, par Stefan Kendall

    With the following command, I only get video. The same setup with -f segment gets video and audio, but then the resulting stream doesn’t play on an iPhone.

    How do I get ffmpeg to encode video and audio into the HLS segments ?

    ffmpeg -v 9 -loglevel error -re -i rtmp://localhost/live/test \
    -c:v libx264 -c:a copy \
    -flags -global_header -map 0 -f hls \
    -hls_list_size 10 \
    -hls_flags delete_segments /usr/local/nginx-streaming/html/video/stream.m3u8
  • AudioQueue bytes to ffmpeg understandable WAV format

    24 décembre 2015, par moeseth

    I got the recorded AudioQueueBufferRef buffer using the following code.

    NSData *data = [NSData dataWithBytes:inBuffer->mAudioData length:inBuffer->mAudioDataByteSize];

    And then, I send the data to my server. However, FFMPEG isn’t able to read that because the data is not in any audio standard format.

    It’s just plain data.

    So, how do I do either on iPhone or backend ffmpeg to convert that raw buffer to WAV ?

    Thank so much.