
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (66)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (8770)
-
How to make FFMPEG faster in general ? [closed]
26 mars 2021, par GitMI convert regulary my video files to current codecs, to keep them available for most of the (currently used) devices.


I use this to convert video files for apple tv :
ffmpeg -i video_file.abc -c:v libx265 -crf 27 -c:a aac -b:a 128k -tag:v hvc1 video_file_updatedt.mp4


... and this to convert audio files to ogg :
ffmpeg -i audio_file.abc -c:a libvorbis -q:a 4 audio_file_updated.ogg


but it consumes 100% of my six core CPU (max. 3.4GHz) an took hours.


Is there a smart way to speed this up and reduce CPU usage at the same time ?
Should i switch to another OS like Linux, one with better usage of my CPU ?


-
I want a ffmpeg command that will zoom video every 4 second with transition effects
19 octobre 2022, par Abu Taher SiddikI want a ffmpeg command that will zoom video 5 times with transition effects (up to down, down to up, right to left, left to right randomly) after every 4 seconds and zooming will last 2 seconds.


Currently I have this command which only zoom video but not with transition.


ffmpeg -i VIDEO.mp4 -vf "zoompan=z='if(gte(time,ld(1)+10),st(1,time)*0,if(ld(1),if(lt(time,ld(1)+3),2,1)))':d=1:x=iw/2-(iw/zoom/2):y=ih/2-(ih/zoom/2):fps=29.97" OUT.mp4



I'm not an expert so if you give me the command with a little bit explanation that will be enough.


Thank you.


-
FFMPEG Command to Zoom the Video is slow
2 novembre 2015, par kishidpI’m trying to zoom a video using FFMPEG. I’m using this command :
ffmpeg -i input.mp4 "zoompan=z=2" output_zoom.mp4
It’s working fine as I get the zoom effect I wanted but the problem is that the process is slow.
I’m seeing a warning message :
Past duration 0.998039 too large
and when processing the output, the fps is running around 2.8, I’m not sure if this means something.
Anything i can do to speed this up ?