
Recherche avancée
Autres articles (12)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
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 (5545)
-
Using more than 2 NV_ENC at a time with FFMPEG
29 décembre 2022, par lowcrawlerI'm currently generating timelapse videos using a thread on my CPU with fluent-ffmpeg running on nodejs. It takes roughly 1 minute to generate a 10 second timelapse. I'm generating many at the same time (basically one per thread) such that I tend to get the best performance at 8 worker threads. ... overall system throughput is about one video per 12 seconds.


GPU processing using h264_nvenc takes the single-thread time to about 3-4 seconds. Yippie ! I went out and bought some nVidia 1660's to take advantage.


Unfortunately, when I go to generate the 3rd simultaneous video, I get "Conversion Failed !" error from FFMPEG.


Some basic research seems to show you can only 2 at a time. Perhaps 3 with updated drivers.


Is there a method around this ? Posts from here indicates this limit is artificial and can be worked around : https://www.techpowerup.com/268495/nvidia-silently-increases-geforce-nvenc-concurrent-sessions-limit-to-3


Perhaps a way to use all the cuda/tensor/etc cores to render timelapse videos instead of just relying on the limited nv_enc ?


-
Can I pipe pygame output to a utility like ffmpeg if I am on Windows ?
20 septembre 2015, par user89Usually,
pygame
shows its output in a specially created window. Instead of creating this window, then saving images in sequence from it, before finally feeding these images to a tool likeffmpeg
, I’d like to pipepygame
’s output directlyffmpeg
.Does what I want make sense ?
If yes, how can I redirect
pygame
’s output to console ? From the documentation, I am aware of methods likepygame.Surface.get_view
orpygame.Surface.get_buffer
, but I don’t know what the difference is between them, and whether they are quite what I need.In this tutorial, a raw
numpy
-array based RGB representation of images is fed toffmpeg
. I figure I could do a similar thing, except instead I’d feed in some sort of RGB representation obtained frompygame
.I know that on Linux, it’s possible to output
pygame
stuff to a framebuffer for display in the console ? Not sure if it is related. In any case, the effect is achieved by changing pygame drivers.So, I have some dots, but need to connect them.
-
Insert Frame to middle of Video
9 août 2015, par user1815241I have a case where I need to insert a frame (or many frames) to the middle of a video. I looked at doing ffmpeg cutting, inserting, and then concatenation but unfortunately I have a lot of cuts and the "stitch back" has a lot of choppiness. My thought was that I could leave the video "whole" and then insert frames as the exact spot(s) that I need to do that. This way I would solve the choppiness problem.
I am currently using ffmpeg and don’t really see any way to accomplish this task with that tool. Google doesn’t seem to be providing much help either.
Has anyone done this before ? What did you do to insert frames at specific spots.
As an FYI - I am doing my processing in Java, using FFMPEG, and my video files are mp4 (although I could convert).
Thank you in advance.