
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 (78)
-
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 (...) -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
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 (...)
Sur d’autres sites (18825)
-
TimeSpan in Aforge.Net, set time for each image in a video
23 décembre 2020, par Siddhant SinghI have a query I am creating a video from the set of images using the Aforge.net framework but the video is playing very fast I want at least 5 seconds for each image in the video, I have tried using timeSpan but I didn’t get the desired result.
could anyone please suggest me or help me to find out my solution.


here is my code


TimeSpan timeSpan = new TimeSpan(0, 0, 5);
string[] paths = Directory.GetFiles(basePaths);
int imagesCount = paths.Length;
using (var vFWriter = new VideoFileWriter())
{

vFWriter.Open(@”D:\videosss.avi”, 1920, 1080,1,VideoCodec.MPEG4,4000000);

for (int i = 0; i < imagesCount; i++)
{
var imagePath = string.Format(paths[i]);
using (Bitmap image = Bitmap.FromFile(imagePath) as Bitmap)
{
vFWriter.WriteVideoFrame(image,timeSpan);

}

}
}
}



if I use timespan the first image plays the whole time of timespan, if I don't use timespan the video plays well but fast. the directory contains 15 images I want 5 or 6 sec at least for each image in the video. where the 45 sec is my total time.


thanks


-
pthread_frame : use better memory orders for frame progress
9 décembre 2016, par Wan-Teh Changpthread_frame : use better memory orders for frame progress
This improves commit 59c70227405c214b29971e6272f3a3ff6fcce3d0.
In ff_thread_report_progress(), the fast code path can load
progress[field] with the relaxed memory order, and the slow code path
can store progress[field] with the release memory order. These changes
are mainly intended to avoid confusion when one inspects the source code.
They are unlikely to have measurable performance improvement.ff_thread_report_progress() and ff_thread_await_progress() form a pair.
ff_thread_await_progress() reads progress[field] with the acquire memory
order (in the fast code path). Therefore, one expects to see
ff_thread_report_progress() write progress[field] with the matching
release memory order.In the fast code path in ff_thread_report_progress(), the atomic load of
progress[field] doesn’t need the acquire memory order because the
calling thread is trying to make the data it just decoded visible to the
other threads, rather than trying to read the data decoded by other
threads.In ff_thread_get_buffer(), initialize progress[0] and progress[1] using
atomic_init().Signed-off-by : Wan-Teh Chang <wtc@google.com>
Signed-off-by : Anton Khirnov <anton@khirnov.net>Merges Libav commit 343e2833.
Signed-off-by : wm4 <nfxjfg@googlemail.com>
-
scale a video to multiple qualities and add watermark
8 mars 2019, par jared zekhello I have a ffmpeg command that scales a video to 2 different qualities and adds a watermark, the problem here is that the watermark is scaled along with the videos and it looks horrible
D:\electron\brenda\node_modules\ffmpeg-static\bin\win32\x64\ffmpeg.exe -i C:\Users\Andy\Desktop\entrada\videoplayback.mp4 -i C:\Users\Andy\Desktop\entrada\marca.png -filter_complex [0:0]scale=854:480[wm]; [wm][1:0]overlay=x=0:y=0[out] -map [out] -map 0:a -movflags faststart -preset fast -y C:\Users\Andy\Desktop\salida/480_videoplayback.mp4 -filter_complex [0:0]scale=640:360[wm]; [wm][1:0]overlay=x=0:y=0[out] -map [out] -map 0:a -movflags faststart -preset fast -y C:\Users\Andy\Desktop\salida/360_videoplayback.mp4
video scaled to 360 with watermark
I want the watermark to remain in its original size and not escalate with the video, thank you for your help I’ve been here for hours