
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (103)
-
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 (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (6437)
-
avdevice/dshow : discover source color range/space/etc
21 décembre 2021, par Diederick Niehorsteravdevice/dshow : discover source color range/space/etc
Enabled discovering a DirectShow device's color range, space, primaries,
transfer characteristics and chroma location, if the device exposes that
information. Sets them in the stream's codecpars.Co-authored-by : Valerii Zapodovnikov <val.zapod.vz@gmail.com>
Signed-off-by : Diederick Niehorster <dcnieho@gmail.com>
Reviewed-by : Roger Pack <rogerdpack2@gmail.com> -
avcodec/webp : Check available space in loop in decode_entropy_coded_image()
25 juillet 2021, par Michael Niedermayeravcodec/webp : Check available space in loop in decode_entropy_coded_image()
Fixes : Timeout
Fixes : 35401/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WEBP_fuzzer-5714401821851648Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
RNFFMpeg.executeAsync : Unable to create gif of a video with space(s) in it's source path
7 juillet 2021, par STBoxUnable to make gif of a video which has space(s) in it's source directory. All the other video which don't have space(s), their gif is making fine. I had a video whose folder name had space and it was not making gif for it. I copied the same video to a folder without space in it's name, and it made gif for it successfully. Even if I replace the the space with source path with anything like %20 etc, then it says




No such file or directory




Code snippet




RNFFmpeg.executeAsync(
 `-i ${source} -ss ${start} -t ${gifDuration} -vf "fps=5,scale=160:-1:flags=lanczos,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" -loop 0 ${destination}`, (completedExecution) => {
 if (completedExecution.returnCode === 0) {
 resolve({ path: destination });
 } else {
 resolve({ error: "invalid Gif" }); // always this part executes for videos with space in their source path
 }
 }
 );







Expected behavior


Regardless a video has or has not a space in it's path, it should make gif correctly and




completedExecution.returnCode




should be 0


Current behavior
Currently, for all the videos having space in their source path, completedExecution.returnCode is always 1


Logs of the same video without space in folder name




[Wed Jul 07 2021 12:23:56.377] LOG file :///storage/emulated/0/AirDroid/VID-20210620-WA0024.mp4 [Wed Jul






07 2021 12:23:56.511] LOG [Parsed_palettegen_3 @ 0x7d62eb5ec0] 255(+1) colors generated out of 249823 colors ; ratio=0.001021 [Wed Jul 07 2021 12:23:56.672] LOG video:48kB audio:0kB subtitle:0kB other streams:0kB






global headers:0kB muxing overhead : [Wed Jul 07 2021 12:23:56.673] LOG






0.041083% [Wed Jul 07 2021 12:23:56.722] LOG "path" : "/data/user/0/com.tbox.pantry/cache/1625642625930.gif"




Logs of the same video with space in folder name




[Wed Jul 07 2021 12:20:45.577] LOG






file :///storage/emulated/0/FMWhatsApp/Media/FMWhatsApp






Video/VID-20210620-WA0024.mp4 [Wed Jul 07 2021 12:20:45.998] LOG






file :///storage/emulated/0/FMWhatsApp/Media/FMWhatsApp : No such file






or directory [Wed Jul 07 2021 12:20:45.998] LOG Conversion failed !






[Wed Jul 07 2021 12:20:45.999] LOG "error" : "invalid Gif"




Environment


"react" : "16.13.1",
"react-native" : "^0.63.3",
"react-native-ffmpeg" : "0.5.1",
Android 11