
Recherche avancée
Autres articles (61)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
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 (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (3240)
-
Split into video frames and save as jpeg
3 janvier 2017, par Selman AkbulutI want to split all frames and save the jpeg file but Error getBuffredImage
public static void main( String[] args )
{
FFmpegFrameGrabber g = new FFmpegFrameGrabber("C:\1.mp4");
g.start();
for (int i = 0 ; i < 50 ; i++) {
ImageIO.write(g.grab().getBufferedImage(), "png", new File(System.currentTimeMillis() + ".png"));
}
g.stop();
} -
Revision 0d80584327 : vp8_loop_filter_bh_y_sse2 : save/restore xmm registers xmm[6-11] should be saved
21 novembre 2012, par James ZernChanged Paths : Modify /vp8/common/x86/loopfilter_block_sse2.asm vp8_loop_filter_bh_y_sse2 : save/restore xmm registers xmm[6-11] should be saved and restored for Windows x64 ; prevents an encoder mismatch and some datarate issues. Change-Id : (...)
-
how i can save overlay text box with a video in gallery by using ffmpeg ?
10 septembre 2024, par Umair Manzoorfinal escapedOverlayText = overlayText.replaceAll(''', '\'') ;
final command =
'-i $videoPath -vf "drawtext=text='$escapedOverlayText':x=10:y=10:fontsize=24:fontcolor=white" -c:a copy $outputPath' ;


print('Executing command: $command');

 final session = await FFmpegKit.execute(command);
 final returnCode = await session.getReturnCode();
 print('here is errror Return code: $returnCode');



that those section of code where this ffmpeg returns the following error
I/flutter ( 6329) : here is errror Return code : 1
I/flutter ( 6329) : FFmpeg failed with return code : 1


i am trying to save the video with overlay text data in the gallery.