Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (112)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (5999)

  • [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.