
Recherche avancée
Médias (9)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (85)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)
Sur d’autres sites (18436)
-
ffmpeg color space metadata not working for some sources
28 août 2023, par pawelI have a bit of a pickle. I'm trying to change incorrect tags on mp4 videos using ffmpeg.


I'm using this command (in a bat file) :


ffmpeg.exe -i %1 -colorspace "rgb" -color_primaries "bt709" -c copy -y %1.sRGB.mp4


I'm on windows and I'm using ffmpeg 6.0


The above command sets the tags for some videos correctly for for others does nothing. The file sizes change but ffprobe still shows me the old tags. It doesn't matter what color spaces I request or if I use numbers or strings.


The only difference I can see in the source videos (ffprobe) is the SAR and DAR section.


Stream #0:0[0x1](und): Video: h264 (Main) (avc1 / 0x31637661), yuv420p(tv, bt709/bt709/iec61966-2-1, progressive), 3840x2160, 91942 kb/s, SAR 1:1 DAR 16:9, 29.97 fps, 29.97 tbr, 30k tbn (default)


Stream #0:0[0x1](und): Video: h264 (Main) (avc1 / 0x31637661), yuv420p(tv, bt709/bt709/iec61966-2-1, progressive), 3840x2160 [SAR 1:1 DAR 16:9], 119433 kb/s, 29.97 fps, 29.97 tbr, 30k tbn (default)


the values are still the same but the grouping is different. the second one is the one that is not working through ffmpeg.


do I need to provide more information on the commandline ? direct it to a stream I want to alter ? I'm a bit out of my depth here and google is not helping much on this.


EDIT : updated to latest ffmpeg and I get warnings telling me that my commands were ignored :


Codec AVOption colorspace (color space) has not been used for any stream. The most likely reason is either wrong type (e.g. a video option with no video streams) or that it is a private option of some encoder which was not actually used for any stream.


however I get the same warnings on the mp4s that worked fine before and it is no longer working in the latest ffmpeg.


my goal is to get from :


Stream #0:0[0x1](und): Video: h264 (Main) (avc1 / 0x31637661), yuv420p(tv, gbr/bt709/bt709, progressive)


to :


Stream #0:0[0x1](und): Video: h264 (Main) (avc1 / 0x31637661), yuv420p(progressive)


basically I want to remove bt709 tag from it


-
Improving ffmpeg pixelation and delay when using four video sources with PiP and using NVIDIA GPU
7 septembre 2023, par jpvansTrying to get the best quality/performance when putting four sources together with ffmpeg.


My current ffmpeg command is :


ffmpeg -input_format h264 -s 1920x1080 -i /dev/video0 -input_format h264 -s 1920x1080 -i /dev/video1 -input_format h264 -s 1920x1080 -i /dev/video2 -input_format h264 -s 1920x1080 -i /dev/video3 -filter_complex \
"[1:v]scale=iw/4:-1:flags=lanczos[pip1]; \
 [2:v]scale=iw/4:-1:flags=lanczos[pip2]; \
 [3:v]scale=iw/4:-1:flags=lanczos[pip3]; \
 [0:v][pip1]overlay=main_w-overlay_w-10:main_h-overlay_h-10[bg1]; \
 [bg1][pip2]overlay=(main_w-overlay_w)/2:main_h-overlay_h-10[bg2]; \
 [bg2][pip3]overlay=10:main_h-overlay_h-10,format=yuv420p[v]" \
-map "[v]" -tune zerolatency -vcodec h264_nvenc -gpu 0 -preset llhq -tune ull -rc:v cbr -b:v 2500K -rc cbr_ld_hq -profile:v baseline -delay:v 0 -an \
 -f flv rtmp://ant-media-server.cloud.vtti.vt.edu/WebRTCAppEE/gst_test



ffmpeg reports only 15 fps when the sources provide 30fps wondering what can be done to improve that




Initial start-up messages from ffmpeg



-
How to build libffmpeg.so from ffmpeg sources
8 octobre 2023, par serggt1I'm trying to build libffmpeg.so shared library from sources on Linux. Sources are here FFmpeg.git.


I run


./configure
make -j4

gcc -shared \
 libavcodec/libavcodec.a \
 libavdevice/libavdevice.a \
 libavfilter/libavfilter.a \
 libavformat/libavformat.a \
 libavutil/libavutil.a \
 libswresample/libswresample.a \
 libswscale/libswscale.a \
 -o libffmpeg.so



The problem is the resulting libffmpeg.so is only 15 KB and says


dlsym fail : /opt/yandex/browser/libffmpeg.so: undefined symbol: avcodec_version



What do I wrong and how to link the library in correct way ?