
Recherche avancée
Autres articles (91)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, 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 (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
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 (...)
Sur d’autres sites (7222)
-
SRT protocol not found - Raspbery Pi 4 via ffmpeg
12 août 2021, par Tim MartinWe tried to stream from a rasp Pi 4 via SRT, but we got a error : "protocol not found". Our command line is :


ffplay srt://127.0.0.1:9500?mode=listener&latency=20000



We tried the following guides :
https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu
how to compile ffmpeg with enabling libsrt
https://www.undergroundnews.dk/index.php/item/107-rtmp-eller-srt-streaming


Those guides worked so far and compiled but we still got the error message.


Do you have any ideas how to get the srt protocol working on a pi via ffmpeg ?


-
Developing android app in window(O.S) with ffmpeg library
19 avril 2014, par PKTomarI want to develop an application by the help of "ffmpeg" library. My developing environment is Windows(O.S.) based. I done lot of Google but find all the tutorial which are linux(O.S.) based.
That's why i download "Cygwin". I try to follow all the steps as in linux based tutorial.
http://www.roman10.net/how-to-build-ffmpeg-with-ndk-r9/comment-page-3/
But I stuck on running following command :
"sudo chomd +x build_android.sh" when entering passphrase it gives error "Command Not Allowed". Actually this command used to check that build_android.sh file is executable or not. That's why I skip this step and run another command "./build_android.sh" which is used to create folder "android" in ffmpeg library. But this command give many errors. I try to remove one by one but after removing one error getting another list of errors.
After all these step I feel that there is some problem in executing script file in windows base environment.
Now I need help, any tutorial which is completely based on windows(O.S.) based.
:Thanks :
-
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