
Recherche avancée
Autres articles (94)
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
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 (...) -
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)
Sur d’autres sites (11908)
-
Pros and cons of installing ffmpeg into the caller's docker container vs. separate container [closed]
8 mai 2022, par Irina RapoportI have a dockerized app that spawns ffmpeg in a child process. It then communicates with it via standard input/output. The app runs under k3d.


I could install ffmpeg in the parent's Dockerfile, by doing


RUN apt-get install -y ffmpeg



Or I can run it in a container of its own. What are the pros and cons of each approach ?


Container start-up cost, while small, may become an issue, because it's started often.


-
Android Samsung Galaxy S2 / S3 device bitmap rendering to ImageView issue
18 décembre 2014, par SteveI am stuck in a very strange
Bitmap
rendering issue with Samsung Android devices. Let me discuss in brief what I have done.I am taking frame from a video and rendering it in a
ImageView
using ffmpeg. Following code gives me a bitmap object in return fromJNI
callback.img_convert_ctx = sws_getContext(pCodecCtx->width,
pCodecCtx->height, pCodecCtx->pix_fmt, target_width,
target_height, PIX_FMT_RGB24, SWS_BICUBIC, NULL, NULL,NULL);
sws_scale(img_convert_ctx,(const uint8_t* const *)
pFrame->data,pFrame->linesize, 0, pCodecCtx->height,pFrameRGB->data,
pFrameRGB->linesize);Next, I’m just setting the
Bitmap
toImageView
. Now the issue is theBitmap
I get is rendering very well in maximum devices except Samsung S2/S3.A>Working well In :- Screen Shot 1
- Nexus 4
- HTC One / HTC One x
- LG Optimus
- Sony Experia
- Samsung Galaxy S Plus / Samsung Exhibit (Android 2.3)
Issue With :-
B>Samsung Galaxy S2 & S3 : The second screen shot.For Case B, A part of the video is rendering at the right side if you notice.
I have tried saving the
Bitmap
I get fromJNI
as jpg in SD card and read that again to set theImageView
and it works. I Don’t understand what is going wrong with the raw Bitmap that I get fromJNI
callback, is it with Samsung S2 Hardware ? Please someone help me on this. -
How to capture region screen with Watermark using FFmpeg on Mac ? [duplicate]
25 janvier 2021, par Yong JuI was tried to capture region screen using FFmpeg on Mac.
So, I ran some command line for it.


ffmpeg -f avfoundation -i "0" -vf "crop=500:500:400:800" -pix_fmt yuv420p -y -r 25 out.mov



Now, I want to capture region screen with watermark.
I don't know how to configure command line for it.
If you have good experience in this field, Please advice me.