
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 (32)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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 -
Création définitive du canal
12 mars 2010, parLorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
A la validation, vous recevez un email vous invitant donc à créer votre canal.
Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)
Sur d’autres sites (5004)
-
execute shell command on php [duplicate]
27 juin 2015, par Jaspreet SinghThis question already has an answer here :
-
How can I debug exec() problems ?
3 answers
$command = "ffmpeg -i '" . $img_full_name . "' -vf scale=200:200 '" . $img_thumb_name . "'" ;
$output=shell_exec($command);
echo $output;
die;I am using this code to execute command in php but it gives me blank out put. Same command works if I Directly execute it on ssh.
-
How can I debug exec() problems ?
-
nested loop that contain 3 loops in bash shell
17 juin 2015, par Tareq SuheimatI want to make a nested loop that contain 3 loops in order to make some test on videos using ffserver and ffmpeg also the netem.
so the first loop must contain the percentage numbers of the bit error like 0.2 0.4 0.6 0.8 and do the following command #tc qdisc change dev eth0 root netem corrupt 0.1% ,then for each one of the bit error another loop to make it for more than one time like a number of trails = 10 and for each try the following command must be done ffmpeg -i rtsp ://localhost:7654/test1-rtsp.mpg -acodec copy -vcodec copy output.mp4please people help me it’s urgent !!!
-
Ffmpeg cannot use the text having white space, while adding a text over a video
13 août 2018, par Shubham KamlapuriI am using ffmpeg to add text over a video, the text can be more than one also. The problem i am facing is with the text having white spaces, ffmpeg is showing the invalid argument.
My command is like this :-
ffmpeg -i input -filter_complex drawtext=fontfile=fontpath:fontcolor=0x000000ff:fontsize=121.26316137279886:shadowcolor=0xffffffff:shadowx=0:shadowy=0:bordercolor=0xffffffff:borderw=0:box=1:boxcolor=0x00000000:boxborderw=30:x=284.73258578742804:y=703.5501114572116:enable='between(t,0,9)':text='hello hello' -c:v libx264 -preset ultrafast output
Error i am facing :
ffmpeg : Unable to find a suitable output format for ’hello’’
ffmpeg : hello’ : Invalid argument
If i am entering text without spaces, it is working perfectly fine, but things are not good with text having spaces. I am stuck at this point from last 2 days, If anybody can help me, will be very helpful !