
Recherche avancée
Autres articles (44)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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 (...) -
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.
Sur d’autres sites (5507)
-
Convert *.hdr sequences to HDR10 videos ffmpeg
3 mars 2021, par kmd999I have some *.hdr sequences, and I would like to convert them to HDR10 videos.
I have tried using FFmpeg but FFMPEG errors that it can't find videos.


ffmpeg -r 60 -i %d.hdr -pix_fmt yuv444p10le -c:v libx265 \
-x265-params hdr-opt=1:repeat-headers=1:colorprim=bt2020:transfer=smpte2084:colormatrix=bt2020nc:max-cll=0,0 \
-crf 25 -preset veryfast t.mp4



This is what I tried. I think this is generally the code to convert to HDR10 videos. I didn't put master-display there because I don't have information. I wonder if master-display is needed.


I also wonder since this *hdr sequence is likely sRGB, what happens if I specify it to be bt2020 ?


-
Android ffmpeg - 3gp to mp4 videos not playing
17 juillet 2013, par santhoshI am doing an android application which is used to merge two videos and after merge completed play the result video. For this I am using ffmpeg.
When I record two mpeg or mp4 videos, the result merged video playing fine. Now I record the videos as 3gp and convert it into mp4 and merged it. Then the result video is not playing.
Can anybody help me What may be the problem ?
-
Concatenating 2 videos using FFMPEG
27 avril 2015, par Rajpal SinghI am combining 2 videos in which one video has audio and second video has no audio.By doing this the output file will be corrupted. I am using the following command to Concatenating the 2 videos.
Command :
ffmpeg -i input_1 -i input_2 -filter_complex "[0:1] [0:0] [1:1] [1:0]
concat=n=2:v=1:a=1 [v] [a]" -map [v] -map [a] output_fileThanks,