
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (43)
-
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...) -
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...)
Sur d’autres sites (4377)
-
Best language to use for AWS Beanstalk worker, for Watermarking videos
16 juin 2017, par RAJ CHOURASIAI have a requirement such that, for each customer, the video content I have has to be separately watermarked and kept in the cloud. Also, this whole process is to be automated.
The way I have figured the architecture is that :
- I would use AWS SQS queue, to update for which Customers, which set of videos have to be watermarked
- AWS Beanstalk worker would read the queue, pick up the videos from a S3 location, watermark the required videos and save back in a separate S3 location
Total size of all the videos can be upto 15GB, which takes more than 24hrs to watermark, using "ffmpeg", so I will also require
- Ability to parallel process, use multiple CPU cores if available
- Ability to auto scale, when required
In order to achieve this, what would be the best Language to use, to write the AWS Beanstalk worker logic ?
-
ffmpeg apad filter not creating equal length videos
29 mai 2021, par user10233170I am downloading videos off the internet with youtube-dl and then combining them into one big video with ffmpeg.


The problem is that the end result is always an out of sync video, because the downloaded videos have differently sized audio-/videostreams.


So I used apad to pad all of the videos with silence
ffmpeg -i VIDEO -filter_complex "apad" -shortest OUTPUT
. This does work and make the discrepancy between video and audio smaller, but there is still a small difference between audio (00:00:17.04) and video (00:00:17.07).

This adds up when combining a lot of videos and leads to the video again being out of sync.


Any input would be appreciated.


-
Converting videos in php without ffmpeg [on hold]
16 février 2016, par Matheus PradoI wanted to know if there is any way to convert videos in PHP without using ffmpeg. If you have no way, does anyone know of any API that makes converting videos and audios for free. In this case need something like http://[api host name]/convert ?target=[url to source]&output=[name of output file.your mime type] that by GET or by post with AJAX or cURL ?.