
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (96)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ; -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (9189)
-
Run ffmpeg command line error in android
27 février 2014, par user3361063When i run this code :
String cmd = mFfmpegInstallPath+" -f image2 -i "+Environment.getExternalStorageDirectory()+"/ffmpeg/img%03d.png "+Environment.getExternalStorageDirectory()+"/tmp/out.mp4";
Process p = Runtime.getRuntime().exec(cmd);I got a error :
Working Directory : null Environment : null
So how to run ffmpeg command line in android ?
-
playing, decoding, seeking, audio from command line
25 août 2017, par AbstractDissonanceThere are various way to use audio, I would like to find several different audio players that can do the following easily, from the command line :
-
Carry out the standard audio function : Play, pause, stop, seek(absolute), volume(absolute), mute.
-
Be able to decode and get the raw data of the audio input so one can display a waveform.
— Correct answers will provide the player, the command line to do the functions and/or how one can interact with it programmatically if necessary.
e.g.,
Program : FFmpeg
decode : pipe out using-i <filename> -f s16le -ac 1 -</filename>
play : ffplay -nodisp then send keys to wmproc(keys don’t work without window open and -nodisp closes window, so much wm the keys)
stop, pause, etc are the same. Does not have a way to absolutely seek or set volume.Other programs might be vlc, etc.
The reason I am asking this is because I would like to provide several options for my program to use what the user might already have without having to require shipping or downloading dlls(i.e., hard dependencies).
Bonus points for being able to control pitch and speed.
-
-
How to understand the client_buffer_time which definition at line 112 of file rtmpproto.c in ffmpeg ?
11 juin 2015, par Jerikc XIONGThere is little information about the client_buffer_time.
In rtmpproto.c :
int RTMPContext::client_buffer_time
client buffer time in ms
Definition at line 112 of file rtmpproto.c.
Referenced by gen_buffer_time().
Can anyone help me understand it ?
Thanks.