
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (25)
-
Qu’est ce qu’un éditorial
21 juin 2013, parEcrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
Vous pouvez personnaliser le formulaire de création d’un éditorial.
Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...) -
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 (...) -
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 (4298)
-
Ffmpeg concat on windows return protocol error
2 juillet 2020, par padavanhi i have ffmpeg on win10.
I try concat files :


ffmpeg -i "concat:1.jpg|2.jpg" out.gif



but always get only one\first image in out.gif result.


Late i find on manual :
"This is analogous to using cat on UNIX-like systems or copy on Windows."
I try


ffmpeg -i "copy:1.jpg|2.jpg" out.gif



and get error :




copy:1.jpg|2.jpg : Protocol not found




-
How do I compile a 64-bit version of ffmpeg on Windows ?
30 septembre 2016, par lyxerai need to compile ffmpeg (64 bit shared dll) for windows.
however I configure in mingw, it always produces 32 bit binary for me.tried this already
./configure --enable-shared --disable-static --enable-memalign-hack --arch=amd64
./configure --enable-shared --disable-static --enable-memalign-hack --arch=x86_64my guess is that a x86 to x86_64 cross compiler is missing.
but just can find a way to make those 64bit dlls.
-
FFMPEG in Windows 7 : merge mp4 files from different folders in a batch
22 avril 2014, par user3406207I would like to concatenate 3 mp4 videos into one avi video for every folder of a directory, with FFMPEG on Windows 7.
I have started this way :
ffmpeg -f concat -i mylist.txt -c copy E:\EA2014\EX14R\EX14R.avi
with mylist.txt being :
file 'E:\EA2014\EX14R\DCIM\100GOPRO\GOPR0001.MP4'
file 'E:\EA2014\EX14R\DCIM\100GOPRO\GP010001.MP4'
file 'E:\EA2014\EX14R\DCIM\100GOPRO\GP020001.MP4'This works fine. Now, I would like to automate it because I have lots of those folders full of videos to merge.
I tried with this to start with :printf "file '$s'\n" .E\EA2014\EX14R\DCIM\100GOPRO\*.MP4 >> mylist.txt
But it tells me that
"printf is not recognized as an internal or external command, operable program or batch file"
Is it because I work in Windows ? Anyone could help me achieve it in another way ?
Needless to say that I am a newbie !
Thanks !