
Recherche avancée
Médias (2)
-
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
Autres articles (83)
-
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 (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
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 ;
Sur d’autres sites (13851)
-
how to run ffmpeg in GPU(amd)
8 juillet 2019, par Hakan Murat Aksüthow to run ffmpeg in ubuntu and in gpu.
https://jcutrer.com/howto/ffmpeg-amd-nvidia-hardware-video-encoding-h264-h265I am using the codes on this site. but gpu commands do not work. I’m not sure if my GPU driver is installed.
I write ffmpeg -i input.avi -c:v h264_amf output.mp4 when ,Unknown encoder ’h264_amf
-
converting video with php and ffmpeg
6 mai 2015, par Fordi am trying a simple test to learn how to convert videos with ffmpeg via PHP as they are uploaded to my site (to .mp4).
however am i missing something, as my simple test is doing nothing....code (simplified)
$videoFile = '/home/xxx/public_html/dev/videos/1746/sample.avi';
exec("ffmpeg -i $videoFile -vcodec h264 -acodec aac -strict -2 /home/xxx/public_html/dev/videos/1746/test.mp4");i have also trired
system("ffmpeg -i $videoFile -vcodec h264 -acodec aac -strict -2 /home/xxx/public_html/dev/videos/1746/test.mp4");
and
shell_exec("ffmpeg -i $videoFile -vcodec h264 -acodec aac -strict -2 /home/xxx/public_html/dev/videos/1746/test.mp4");
Also if i try
echo exec('ffmpeg -formats');
i get no output
none of the above convertion tests work and no test.mp4 file is created.
i have error reporting turned on yet get no errors.any advice would be welcomed please
-
FFMPEG - Drawtext or drawbox or overlay on single frame
2 novembre 2011, par waxicalI'm using the avfilters on FFMPEG to drawtext and drawbox. Two of the most poorly documented functions known to man.
I'm struggling to work out how and if I can use this on a single frame. I.e. appear drawtext on frame 22.
Current command :-
ffmpeg -i /home/vtest/test.wmv -y -b 800000 -f flv -vcodec libx264 -vpre default -s 768x432 -g 250 -vf drawtext="fontfile=/home/Cyberbit.ttf:fontsize=24:text=testical:fontcolor=green:x=100:y=200" -qscale 8 -acodec libfaac -sn -vstats /home/testout.flv
Two elements mention here in the documentation are n and t - however I only seem to be able to use them in x and y. Not in text or even as other parameters.
Any help or ffmpeg guidance would be gratefully received.