
Recherche avancée
Autres articles (96)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains 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, parPré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 ) (...) -
List of compatible distributions
26 avril 2011, parThe 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 (...)
Sur d’autres sites (15907)
-
[iOS]Use ffmpeg to add watermark(overlay) for video with image : JPG is OK, bug PNG is not useful
2 avril 2017, par WellBeingMy 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 KendallWith 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 moesethI 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.