
Recherche avancée
Médias (3)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (59)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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" (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...)
Sur d’autres sites (10629)
-
Set the width of text in FFMPEG
7 juin 2020, par Super GadgetsI am currently stuck with ffmpeg issue, I have an online video editor where users can add text and edit it.



So I make an overlay div over the tag to let the user see exactly what the video will look like after render.



But here is the issue : How can I get the css and let ffmpeg apply it on the text, the css will be the div where the transcription is how width, height , margins , colors ...



Here is an example of a box :



<div style="width:100px;text-align:center;top:10px;left:10px> TEXT HERE <div>&#xA;

 ;
 ;
P.s : I tried Aegisub, force_style but no options seems to offer setting the width of the box.

 ;
 ;
Is there any way to do this ? Thank you.

 ;">
FFmpeg text at random position [duplicate]
I need to print text at random position (to protect videos).



The following works, but it seems that the random position is updated at miliseconds what makes the text go crazy across the screen. Someone has any idea ? Thanks



ffmpeg -i video.mov -vf "drawtext=fontfile=/Windows/Fonts/arial.ttf: text='Test Text':x=random(1)*w: y=random(1) * h" -acodec copy output.avi



I am trying add text and image over video using FFmpeg lib in androoid studio
I am using FFmpeg lib for add text over video and add image over video but could not get successful. I am testing this one in a real device.
I am have already tried 2 commands for add text and add image over video but could not get proper output
String command[]={"ffmpeg","-i",inputpath,"-vf", "drawtext="+"\""+"fontfile=/sdcard/retro.ttf: text='Test Text'"+"\"",outputpath};
String addimg[]={"ffmpeg","-i", inputpath,"-i", imagepath ,"-filter_complex", "[0:v][1:v] overlay=25:25:enable='between(t,0,10)'" ,"-pix_fmt", "yuv420p", "-c:a copy",outputpath};
public void LoadFFmpegLibrary()
{
if(ffmpeg==null)
{
ffmpeg = FFmpeg.getInstance(MainActivity.this);
try {
ffmpeg.loadBinary(new LoadBinaryResponseHandler() {
@Override
public void onStart() {
Log.e("ffmpeg","Start to load");
}
@Override
public void onFailure() {
Log.e("ffmpeg","failed to load");
}
@Override
public void onSuccess() {
Log.e("ffmpeg","load Successfully");
ExcuteFfmpefLibrabry(command);
// Toast.makeText(MainActivity.this,"Success",Toast.LENGTH_LONG).show();
}
@Override
public void onFinish() {
Log.e("ffmpeg","failed to load");
}
});
} catch (FFmpegNotSupportedException e) {
// Handle if FFmpeg is not supported by device
Log.e("ffmpeg",e.toString());
}
}
}
public void ExcuteFfmpefLibrabry(String command[])
{
ffmpeg = FFmpeg.getInstance(MainActivity.this);
try {
// to execute "ffmpeg -version" command you just need to pass "-version"
ffmpeg.execute(command, new ExecuteBinaryResponseHandler() {
@Override
public void onStart() {
Log.e("ffmpeg","Exaction Start");
}
@Override
public void onProgress(String message) {}
@Override
public void onFailure(String message) {
Log.e("ffmpeg","failed to Excute Command");
Log.e("ok",message);
}
@Override
public void onSuccess(String message) {
Log.e("ffmpeg","Video Edited Successfully");
Log.e("ok",message);
// ExcuteFfmpefLibrabry(tetxcommand);
Toast.makeText(MainActivity.this,"Success",Toast.LENGTH_LONG).show();
}
@Override
public void onFinish() {
}
});
} catch (FFmpegCommandAlreadyRunningException e) {
Log.e("ffmpeg",e.toString());
}
}
Unable to find a suitable output format for ’ffmpeg’
ffmpeg : Invalid argument
I am getting an error ---> Unable to find a suitable output format for 'ffmpeg' ffmpeg: Invalid argument