
Recherche avancée
Médias (1)
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (64)
-
Publier sur MédiaSpip
13 juin 2013Puis-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 -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)
Sur d’autres sites (7887)
-
What's the Netflix / vmaf result stand for ?
1er septembre 2021, par HanamakiI ran the vamf between two mp4 files, and I got the result as :



<metric min="0.294617" max="0.999526" mean="0.902007"></metric>
<metric min="0.559920" max="0.994265" mean="0.918411"></metric>
<metric min="0.372149" max="0.999764" mean="0.907398"></metric>
<metric min="0.226668" max="0.999331" mean="0.915917"></metric>
<metric min="0.224996" max="1.010998" mean="0.881612"></metric>
<metric min="0.000000" max="32.177296" mean="6.365028"></metric>
<metric min="0.000000" max="145.765976" mean="7.202581"></metric>
<metric min="0.008498" max="0.910434" mean="0.247533"></metric>
<metric min="0.023310" max="0.990787" mean="0.457384"></metric>
<metric min="0.029596" max="0.995830" mean="0.529965"></metric>
<metric min="0.032303" max="0.997724" mean="0.586864"></metric>
<metric min="0.000000" max="100.000000" mean="71.630354"></metric>
 



I got the "vif" from the paper "IMAGE INFORMATION AND VISUAL QUALITY". However,what's the meaning of 4 scales of vif ?
And any detail introduction about this result ? Thank you very much.


-
how to play audio output to a device using ffmpeg's avdevice library ?
18 septembre 2022, par sssssssHow can I use the ffmpeg's avdevices c library to output audio to an audio device (specifically alsa). All I could find is its doxygen and the only useful thing I was able to take out of it is, quote


"the (de)muxers in libavdevice are of the AVFMT_NOFILE type (they use their own I/O functions). The filename passed to avformat_open_input() often does not refer to an actually existing file, but has some special device-specific meaning - e.g. for xcbgrab it is the display name."


but I don't understand where do I specify AVFMT_NOFILE and where do I specify which device I want use.I see how I can get an 'AVOutputFormat' pointer but then what do I do with it ?


update :
so now i found the function 'avformat_alloc_output_context2' so my code looks like this :


AVPacket pkt = av_packet_alloc();
avformat_alloc_output_context2(&ofmt_ctx, NULL, "alsa", NULL);
avformat_new_stream(ofmt_ctx, NULL);

while(av_read_frame(fmt_ctx, pkt) == 0){
 av_write_frame(ofmt_ctx, pkt);
}



fmt_ctx is the input file's AVFormatContext.


but I am still getting an error '[alsa @ 0x555daf361140] Invalid packet stream index : 1' what am I missing ?


-
ffmpeg - Adding and Removing Subtitles without Changing the Video
28 septembre 2018, par MeCeI’m trying to embed subtitles into video and removing the subtitles back again without changing the video, meaning I want the output video to be the same with the original video.
I’m using the following command to embed the subtitles
ffmpeg -i original.mp4 -i original.srt \
-c:v copy -c:a copy -c:s mov_text \
-map_metadata 0:g -map_metadata:s:v 0:s:v -map_metadata:s:a 0:s:a \
-movflags +faststart -threads 8 \
output.mp4To remove the subtitles,
ffmpeg -i output.mp4 \
-c:v copy -c:a copy \
-map_metadata 0:g -map_metadata:s:v 0:s:v -map_metadata:s:a 0:s:a \
-movflags +faststart -threads 8 \
-sn \
removed.mp4The output is almost the same but I couldn’t figure out what would cause the difference. When I compare the binaries, almost all of the differences are
original: 0xF3
removed: 0xF4The bytes are incremented by 1, I think only in the header.
Can you help ? Thank you in advance.