
Recherche avancée
Médias (1)
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (37)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Configuration spécifique d’Apache
4 février 2011, parModules spécifiques
Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
Création d’un (...) -
L’agrémenter visuellement
10 avril 2011MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.
Sur d’autres sites (5989)
-
How to increase the audio length using FFMPEG ?
22 janvier 2016, par Rama LingamI have the MP3 audio file
output.mp3
with00:00:01
length.
I want to convert the audio file tooutput_test.mp3
with00:00:50
length.
The audio file should be play repeat at end of length00:00:50
. How to do it ?$imgDir = 'upload/2016/01/tmp_81332';
$ffmpeg = '/usr/bin/ffmpeg';
// Convert Audio Length Path
$convAudioPath = $imgDir."/output.mp3";
$convAudioPath_test = $imgDir."/output_test.mp3";
exec("$ffmpeg -i $convAudioPath -vcodec copy -acodec copy -ss 00:00:00.000 -t 00:00:50.000 $convAudioPath_test");Advise any idea !
-
javafx show FFmpegFrameGrabber javacv
26 mai 2017, par Anastasia SisordiaI use org.bytedeco.javacv. Created
FFmpegFrameGrabber streamGrabber = new FFmpegFrameGrabber(filename);
When I use
CanvasFrame
i justgrab
thestreamGrabber
and convert thisframe
toBufferedImage
and show this imagecanvas.showImage(bi);
And this works perfect.
But if I want to show this image inside the
GridPane
, I convertBufferedImage
tojavafx.scene.image.Image
:Image image= SwingFXUtils.toFXImage(bi, null);
And my programm catch OutOfMemoryError .
May I add
Frame (org.bytedeco.javacv.Frame)
orBufferedImage
to myGridPane
without conver to image ? What need to do ? -
How to show subtitle on video in ffmpeg
19 février 2023, par AmmaraI am working with ffmpeg. I use below code to show subtitle on video. I create video but subtitle did not show. Please help me
Here is my code. here is my abc.srt file. I store this to my download folder of mobile


1
00:00:00,000 --> 00:00:01,500
This an example subtitle

2
00:00:01,600 --> 00:00:02,500
<i>Italic style</i>

3 
00:00:03,000 --> 00:00:15,000
 Video by Tiger Lily on pexels.com



here is ffmpeg command


String srt=BASE_PATH+'abc.srt';
 String CommandOverlay=' -i ${video1} -i "$srt" -c:v copy -c:a copy -c:s mov_text ${OUTPUT_PATH}';
 await FFmpegKit.execute(CommandOverlay).then((session) async {
 final returnCode = await session.getReturnCode();
 if (ReturnCode.isSuccess(returnCode)) {print("Task Completed");}
 else if (ReturnCode.isCancel(returnCode)) {print("cancel");}
 else {print("error ");}
 });
}else if (await Permission.storage.isPermanentlyDenied) {
 openAppSettings();
}



It generates video without any subtitle