
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (38)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...) -
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 (...)
Sur d’autres sites (6791)
-
avutil/internal : remove FF_ALLOCx{_ARRAY}_OR_GOTO macros
2 juin 2020, par Limin Wangavutil/internal : remove FF_ALLOCx_ARRAY_OR_GOTO macros
These functions have a terrible design, let us fix them before extending
them.
First design mistake : no error code. A helper function for testing
memory allocation failure where AVERROR(ENOMEM) does not appear is
absurd.Second design mistake : printing a message. Return the error code, let
the caller print the error message.Third design mistake : hard-coded use of goto.
http://ffmpeg.org/pipermail/ffmpeg-devel/2020-May/262544.html
Signed-off-by : Limin Wang <lance.lmwang@gmail.com>
-
How can I concatenate 2 videos with audio using ffmpeg ? [duplicate]
8 juin 2020, par Easy Tricks For AndroidI tried this command :



ffmpeg -f concat -i mylist.txt -c copy output.mp4




But
output.mp4
has no audio.


mylist.txt
contains :


file '1.mp4'
file '2.mp4'




Information about
1.mp4
and2.mp4
:


C:\Users\Admin\OneDrive\Desktop\New folder>ffmpeg -n -i 1.mp4 -i 2.mp4
ffmpeg version git-2020-05-23-26b4509 Copyright (c) 2000-2020 the FFmpeg developers
 built with gcc 9.3.1 (GCC) 20200523
 configuration: --enable-gpl --enable-version3 --enable-sdl2 --enable-fontconfig --enable-gnutls --enable-iconv --enable-libass --enable-libdav1d --enable-libbluray --enable-libfreetype --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libsrt --enable-libtheora --enable-libtwolame --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxml2 --enable-libzimg --enable-lzma --enable-zlib --enable-gmp --enable-libvidstab --enable-libvmaf --enable-libvorbis --enable-libvo-amrwbenc --enable-libmysofa --enable-libspeex --enable-libxvid --enable-libaom --disable-w32threads --enable-libmfx --enable-ffnvcodec --enable-cuda-llvm --enable-cuvid --enable-d3d11va --enable-nvenc --enable-nvdec --enable-dxva2 --enable-avisynth --enable-libopenmpt --enable-amf
 libavutil 56. 48.100 / 56. 48.100
 libavcodec 58. 87.101 / 58. 87.101
 libavformat 58. 43.100 / 58. 43.100
 libavdevice 58. 9.103 / 58. 9.103
 libavfilter 7. 83.100 / 7. 83.100
 libswscale 5. 6.101 / 5. 6.101
 libswresample 3. 6.100 / 3. 6.100
 libpostproc 55. 6.100 / 55. 6.100
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '1.mp4':
 Metadata:
 major_brand : mp42
 minor_version : 0
 compatible_brands: mp41isom
 creation_time : 2020-05-31T08:12:56.000000Z
 Duration: 00:00:05.93, start: 0.000000, bitrate: 186 kb/s
 Stream #0:0(und): Video: h264 (Main) (avc1 / 0x31637661), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], 184 kb/s, 30 fps, 30 tbr, 30k tbn, 60 tbc (default)
 Metadata:
 creation_time : 2020-05-31T08:21:56.000000Z
 handler_name : VideoHandler
 encoder : AVC Coding
Input #1, mov,mp4,m4a,3gp,3g2,mj2, from '2.mp4':
 Metadata:
 major_brand : mp42
 minor_version : 0
 compatible_brands: mp41isom
 creation_time : 2020-06-01T03:32:58.000000Z
 Duration: 00:00:12.23, start: 0.000000, bitrate: 1909 kb/s
 Stream #1:0(und): Video: h264 (Main) (avc1 / 0x31637661), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], 1708 kb/s, 30 fps, 30 tbr, 30k tbn, 60 tbc (default)
 Metadata:
 creation_time : 2020-06-01T04:17:17.000000Z
 handler_name : VideoHandler
 encoder : AVC Coding
 Stream #1:1(und): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 196 kb/s (default)
 Metadata:
 creation_time : 2020-06-01T04:17:17.000000Z
 handler_name : SoundHandler
At least one output file must be specified



-
FFmpeg freezes on the same frame and gets stuck on it
12 juin 2020, par rilesI'm trying to figure out why the following ffmpeg (4.2.1) command, which works well most of the time, sometimes ends up stuck on the same frame.



This ffmpeg command allows me to make a LIVE streaming with recording VOD at the same time.



Has anyone ever had this problem ?



Thank you in advance for your help.





17:27:07 | ffmpeg.exe -hide_banner -y -rtbufsize 500M -f dshow -s 1280x720 -i video="Microsoft® LifeCam Studio(TM)":audio="Microphone (Realtek(R) Audio)" -flags +global_header -c:v h264 -pix_fmt yuv420p -profile:v baseline -level 3.0 -preset ultrafast -pix_fmt yuv420p -b:v 1935k -r 30.0 -c:a aac -b:a 128k -ac 1 -f tee -map 0:v -map 0:a "'C:\Users\xxx\2020-06-10_17-27-07.mp4'|[f=fifo:fifo_format=flv:drop_pkts_on_overflow=1:attempt_recovery=1:recovery_wait_time=1]rtmp://xx.xx.xx.xxx:1935/live/xxxx" 



17:27:09 | [frame= 39 fps=0.0 q=15.0 size=N/A time=00:00:00.95 bitrate=N/A dup=23 drop=0 speed= 1.9x ]

17:27:10 | [frame= 54 fps= 54 q=22.0 size=N/A time=00:00:01.44 bitrate=N/A dup=23 drop=0 speed=1.43x ]

...

17:30:09 | [frame= 5418 fps= 30 q=22.0 size=N/A time=00:03:00.44 bitrate=N/A dup=24 drop=0 speed= 1x ]

17:30:10 | [frame= 5430 fps= 30 q=20.0 size=N/A time=00:03:00.95 bitrate=N/A dup=26 drop=0 speed= 1x ]

17:30:10 | [frame= 5447 fps= 30 q=23.0 size=N/A time=00:03:01.44 bitrate=N/A dup=28 drop=4 speed= 1x ]

17:30:11 | [frame= 5463 fps= 30 q=23.0 size=N/A time=00:03:01.95 bitrate=N/A dup=28 drop=4 speed= 1x ]

...

17:48:55 | [frame=39141 fps= 30 q=21.0 size=N/A time=00:21:44.46 bitrate=N/A dup=40 drop=15 speed= 1x ]

17:48:55 | [frame=39176 fps= 30 q=12.0 size=N/A time=00:21:45.43 bitrate=N/A dup=60 drop=15 speed= 1x ]

17:48:55 | [frame=39199 fps= 30 q=12.0 size=N/A time=00:21:46.20 bitrate=N/A dup=82 drop=15 speed= 1x ]

17:48:56 | [frame=39205 fps= 30 q=18.0 size=N/A time=00:21:46.40 bitrate=N/A dup=82 drop=38 speed= 1x ]

17:48:56 | [frame=39205 fps= 30 q=18.0 size=N/A time=00:21:47.22 bitrate=N/A dup=82 drop=38 speed= 1x ]

17:48:57 | [frame=39205 fps= 30 q=18.0 size=N/A time=00:21:47.73 bitrate=N/A dup=82 drop=38 speed= 1x ]

...

18:01:05 | [frame=39205 fps= 19 q=18.0 size=N/A time=00:33:56.24 bitrate=N/A dup=82 drop=38 speed= 1x ]