
Recherche avancée
Médias (91)
-
DJ Z-trip - Victory Lap : The Obama Mix Pt. 2
15 septembre 2011
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Matmos - Action at a Distance
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Danger Mouse & Jemini - What U Sittin’ On ? (starring Cee Lo and Tha Alkaholiks)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Cornelius - Wataridori 2
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Rapture - Sister Saviour (Blackstrobe Remix)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (100)
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
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 (...)
Sur d’autres sites (9447)
-
ftyp3gp4 m4a files convert to another Format
24 février 2020, par Hossein ShahabiAudio files recorded by Samsung smart phones are
m4a
inftyp3gp4
codec. No software can play files on the computer. I must be convert these files towav
format on server.
In this case, I used FFMpeg and sox. But none of these could convert this format.FFMpeg :
ffmpeg.exe 1.m4a 1.wav
.m4a Audio File (Recorded on Samsung Mobile) :
Download -
FFmpeg : chromakey without green edges
5 septembre 2020, par IgniterI have a video of a person on green background and I'm trying to turn background transparent by this :


ffmpeg -i bg.mp4 -i man.mp4 -filter_complex '[1:v]colorkey=0x00ff00:0.3:0.3[ckout];[0:v][ckout]overlay[out]' -map '[out]' result.mp4



Colorkey gives this quite noticeable green edge around the person's figure.

Any attempts to increase opacity or blend parameters result in disappearing facial features.



Is there any smart way to change pure green
0x00ff00
pixels with transparent ones ?

-
FFMPEG and AWS : What's the most efficient way to handle this ?
28 mai 2022, par Red VicI'm new to AWS and I originally built the FFmpeg functions on my Node.JS API. But I realized this is the wrong way to do it in a real-world app, and that you need to use separate Lambda functions in AWS that handle the video editing separately from the main server.


I'm mainly a front-end developer but I'm open to learning new things.


I basically have the following process in my app :


- 

- User uploads video.
- I need to take that video and add a watermark to it.
- I then need a copy of the watermarked video in a smaller resolution.
- I then need a 6 seconds GIF of the smaller resolution video.
- Finally, I need to upload the 3 edited files (2 .mp4's and 1 .gif) to S3, and remove the original, non-watermarked video.












Here are my questions to be clear :


- 

- Should I upload the original file to S3 or to the server ? And why ?
- Is the process above doable in a single Lambda function ? Or do I need more Lambda functions ?
- How would you handle this problem, personally ?








I originally built it by chaining one function to the next with promises, but AWS seems like a different world of doing things and the way I originally built it would not work.


Thanks a lot.


Update
Here are some tests I did with a couple videos :







 

Test 1 

Test 2 

Test 3 

Test 4 

Test 5 







 Original video resolution 

1080p 

1080p 

1080p 

1080p 

480p 




 Original video duration 

23 minutes 

15 minutes 

11 minutes 

3.5 minutes 

5 minutes 




 Step 1 duration (Watermarking original video) 

30 minutes 

18 minutes 

14 minutes 

4 minutes 

2 minutes 




 Step 2 duration (Watermarking lower resolution) 

5 minutes 

3 minutes 

3 minutes 

1 minute 

skip (already low res) 




 Step 3 duration (6 seconds GIF creation) 

negligible (15 seconds) 

negligible (10 seconds) 

negligible (7 seconds) 

negligible 

negligible 




 Total 

35 minutes 

21 minutes 

17 minutes 

5 minutes 

2 minutes