
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (65)
-
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 (6460)
-
Crop multiple images in Flutter
31 juillet 2020, par asoredI have multiple images in different resolutions in a folder. With ffmpeg I create a video from all of these.


My code


await _flutterFFmpeg.execute('-framerate 1 -pattern_type glob -i "$tempPath/*.jpg" $tempPath/$videoFileName.mov')



What I get is a video from all of my images. This works well. But : Many of my images are skewed. So I think I need to crop them. Or is there a function like CSS
background-size: cover
?

Or can I crop images with Dart before creating the video with
ffmpeg
?

Thanks for your helo !


-
FFMpeg Batch Image + Multiple Audio to video
23 juillet 2020, par PecoIm trying to do the following with FFMpeg I want to create multiple videos with one image and different audio files (music albums). These are my own albums so I have rights to do so before you ask. I have 100's of audio files to stick up on youtube.



Is there a way I can create this in batch so i can just load one image (album cover) and multiple audio files (the album tracks) and get videos to the tracks length automatically ?



Appreciate any help


-
How to run ffmpeg as c program
12 mars 2015, par Yonghao ZhaoI am a student currently work on real-time video transmission, recently I found ffmpeg command line is very powerful in real-time encoding/decoding.
But what I want to do is move the c program of the encoding/decoding part (corresponding to ffmpeg command line) into our general big c program.
The problem is, I have already found the corresponding c program file in ffmpeg source folder (but actually I am not sure whether it is or not) its in
home/ffmpeg sources/ffmpeg/example/decoding_encoding.c
.I opened the file but cannot run it in Codeblocks, it gives the error
undefined reference to 'av_crc'
and a lot of ’undefined reference’ error.
- Does anybody have any idea how to solve this ?
- And any other idea of how to trans ffmepg command line to c program ?