
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (70)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...)
Sur d’autres sites (9933)
-
FFMpeg estimated execution time
14 juin 2017, par JuviI’m using FFmpegAndroid library in my project to overlay a video.
The ffmpeg process is inside a service and I want to show the user a notification with progress to determine the progress of the process.
I’ve went through the outputs of the ffmpeg but there’s nothing that specify the estimated duration time.
Maybe it’s possible to calculate it by other params that shown in the output such as fps, bitrate or speed but I have no clue..Any ideas ?
-
FFMPEG set hls segments start time
15 septembre 2020, par DavidBMy code is :


ffmpeg -i input.mp4 -framerate 30 -rtbufsize 100M -s 640x480 -c:v libx264 -b:v 1200k -minrate 1200k -maxrate 1200k -bufsize 1200k -vf mpdecimate -g 15 -c:a aac -b:a 96k -ac 2 -ar 44100 -preset veryfast -f hls -hls_segment_type fmp4 -hls_time 2 output.mp4



it generates .m4s chunks that are streamed perfectly with MediaSource API. Is it possible to move chunks start time to specified offset, so that stream to be start not from 0 but e.g. 250 ?


-
Comparing two similar videos of different run time length
5 décembre 2016, par Sachin BansalI have two videos of a single selenium automation script. One is a baseline video and I want to compare the second video with this baseline video. In comparison I want to capture the screenshots of the frames that are not matching.
The problem is that the videos might not be of same size and run time as the running of scripts depends on network.
I have tried ffmpeg for this, but that didn’t result in any fruitful result. Can anyone guide me in a right direction on how to get a head-start in this.
Thanks