
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (39)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 is the first MediaSPIP stable release.
Its official release date is June 21, 2013 and is announced here.
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 (...) -
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 (3639)
-
How can I record audio from output device using ffmpeg ?
17 mai 2020, par NimethI'm building an app (Android and iOS) that user could sing MV Karaoke over HLS video streaming. To produce a final recording for a user, I use ffmpeg to mix the audio stream taken directly from the song with user's recorded vocal and video. But the big challenge is when there are silence periods during recording due to low internet bandwidth, there would be a significant lag time in the final mixed output which is not acceptable for users. How can I use ffmpeg to live record audio being played by another player and use it to mix with user's vocal ?


-
firefox not playing ffmpeg processed video
6 février 2014, par user3176531I am merging an mp3 audio file with mp4 video file using this command.
exec("ffmpeg -i 1.mp3 -i 1.mp4 -acodec copy -vcodec copy -shortest final.mp4")
Final video is fine. Mp3 audio file sound is merge successfully with mp4 video. Video is being play on all browsers but on firefox it is not playing. It is giving error that 'Video cant be played because the file is currupted'. Can you please tell me what's the issue.
-
I want to convert my 3gp audio file to .wav formate
11 mars 2020, par gowthamiI want to convert my 3gp audio to .wav format. I used ffmpeg to convert that one. In that it is showing success not getting any error. But i am unable to get the final output file. Please help me to solve this issue.
Here is my code.
sampleDir = new File(Environment.getExternalStorageDirectory().getAbsolutePath(), "/OfficeRecordings/");
if (!sampleDir.exists()) {
sampleDir.mkdirs();
}
outputFile = sampleDir+"/"+"sample_record.3gp";
finalFile = sampleDir+"/"+"final_record.wav";
final String[] cmd = new String[]{"-y", "-i", outputFile, finalFile};
execFFmpegBinary(cmd);
private void execFFmpegBinary(final String[] command) {
FFmpeg ffmpeg = FFmpeg.getInstance(this);
try {
FFmpeg.getInstance(MainActivity.this).loadBinary(new FFmpegLoadBinaryResponseHandler() {
@Override
public void onStart() {
Log.e("start",".......");
}
@Override
public void onSuccess() {
Log.e("success",".......");
}
@Override
public void onFailure() {
Log.e("fail",".......");
}
@Override
public void onFinish() {
Log.e("finish",".......");
}
});
} catch (FFmpegNotSupportedException e) {
e.printStackTrace();
}