
Recherche avancée
Médias (1)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
Autres articles (104)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Qu’est ce qu’un masque de formulaire
13 juin 2013, parUn masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
Chaque formulaire de publication d’objet peut donc être personnalisé.
Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...) -
Monitoring de fermes de MediaSPIP (et de SPIP tant qu’à faire)
31 mai 2013, parLorsque l’on gère plusieurs (voir plusieurs dizaines) de MediaSPIP sur la même installation, il peut être très pratique d’obtenir d’un coup d’oeil certaines informations.
Cet article a pour but de documenter les scripts de monitoring Munin développés avec l’aide d’Infini.
Ces scripts sont installés automatiquement par le script d’installation automatique si une installation de munin est détectée.
Description des scripts
Trois scripts Munin ont été développés :
1. mediaspip_medias
Un script de (...)
Sur d’autres sites (8436)
-
FFmpeg command-line on Android
10 mai 2021, par Gonzalo SoleraI´m trying to use this ffmpeg command line on Android :



ffmpeg -i /sdcard/DCIM/video.mp4 -s 480x320 /sdcard/output.mp4




I have the executable file of ffmpeg (on this path : /data/local/tmp/ffmpeg/ with chmod 751), and as I read, I´m trying to invoke it using :



Runtime.getRuntime().exec("/data/local/tmp/ffmpeg -i /sdcard/DCIM/video.mp4 -s 480x320 /sdcard/output.mp4");




But I´m not getting any result after this calling, so I tried the same command but using the android terminal and I´m sure ffmpeg works because I ´m getting many outputs like video data. But it doesn´t do the action I want, I´m getting this message :



Unable to find a suitable output format for '/sdcard/output.mp4'




I don´t have any idea about what it can be the issue...
Thanks for help !!


-
libavcodec/libdavs2.c : Fix for the wrong line size is used
25 novembre 2018, par Limin Wang -
ffmpeg command line encrption/decryption
5 août 2019, par gaamaaI need to decrypt the RTMP key from inside ffmpeg command line parser.
Could some ffmpeg experts help me to show the right function ?I tried FFmpeg-master\fftools\cmdutils.c file and at function
static void prepare_app_arguments(int *argc_ptr, char ***argv_ptr)
I couldn’t succeed.
File Name : FFmpeg-master\fftools\cmdutils.c
static void prepare_app_arguments(int *argc_ptr, char ***argv_ptr)
{
char *argstr_flat;
wchar_t **argv_w;
int i, buffsize = 0, offset = 0;
if (win32_argv_utf8) {
*argc_ptr = win32_argc;
*argv_ptr = win32_argv_utf8;
return;
}
win32_argc = 0;
argv_w = CommandLineToArgvW(GetCommandLineW(), &win32_argc);
if (win32_argc <= 0 || !argv_w)
return;
/* determine the UTF-8 buffer size (including NULL-termination symbols) */
for (i = 0; i < win32_argc; i++)
buffsize += WideCharToMultiByte(CP_UTF8, 0, argv_w[i], -1,
NULL, 0, NULL, NULL);Kindly show me the correct souce code file and the function to experiment.
So that I could pass the encrypted RTMP key as command line and inside ffmpeg I could decrypt.