
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (98)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (9815)
-
Fix VS project file for iffscan.
28 juin 2014, par Erik de Castro Lopo -
Android - How to direct the audio data from MediaRecorder as the input of ffmpeg command via Pipe ?
3 juin 2013, par Abner311I tried to publish audio stream to RTMP server via FFmpeg executable binary.
I have referred to Android AudioRecord to FFMPEG encode native AAC to create a pipe at Android side and assign the reader part of pipe to ffmpeg command.@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(com.example.processtest.R.layout.activity_main);
mediaRecorder = new MediaRecorder();
mediaRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);
mediaRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
mediaRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AAC);
mediaRecorder.setAudioSamplingRate(44100);
mediaRecorder.setAudioEncodingBitRate(64);
final ParcelFileDescriptor[] pipe = getPipe();
mediaRecorder.setOutputFile(pipe[1].getFileDescriptor());
try {
mediaRecorder.prepare();
} catch (IllegalStateException e1) {
e1.printStackTrace();
} catch (IOException e1) {
e1.printStackTrace();
}
mediaRecorder.start();
TextView txt = (TextView)this.findViewById(com.example.processtest.R.id.output);
try {
p = Runtime.getRuntime().exec("/data/data/com.example.processtest/bin/ffmpeg -re -i pipe:"+ pipe[0].getFd() +" -c copy -f flv rtmp://192.168.2.224:1935/myapp/mystream");
} catch (IOException e) {
e.printStackTrace();
}
}
ParcelFileDescriptor[] getPipe()
{
final String FUNCTION = "getPipeFD";
//FileDescriptor outputPipe = null;
ParcelFileDescriptor[] pipe = null;
try
{
pipe = ParcelFileDescriptor.createPipe();
}
catch(Exception e)
{
Log.e("ProcessTest", FUNCTION + " : " + e.getMessage());
}
return pipe;
}However, I got the error msg like "pipe:55 : Bad file number" :
$/data/data/com.example.processtest/bin/ffmpeg -re -i pipe:55 -c copy -f flv rtmp://192.168.2.224:1935/myapp/mystream
E/ProcessTest(19150): libavutil 51. 65.100 / 51. 65.100<br />
E/ProcessTest(19150): libavcodec 54. 41.100 / 54. 41.100<br />
E/ProcessTest(19150): libavformat 54. 17.100 / 54. 17.100<br />
E/ProcessTest(19150): libavdevice 54. 1.100 / 54. 1.100<br />
E/ProcessTest(19150): libavfilter 3. 2.100 / 3. 2.100<br />
E/ProcessTest(19150): libswscale 2. 1.100 / 2. 1.100<br />
E/ProcessTest(19150): libswresample 0. 15.100 / 0. 15.100<br />
E/ProcessTest(19150): pipe:55: Bad file number<br />Please help me figure out how to assign right pipe fd to ffmpeg command-line process.
-
Anomalie #4179 (Fermé) : Spip derrière Varnish : port non-standard dans l’URL ?
7 octobre 2018, par b bOk, merci pour le retour.