
Recherche avancée
Autres articles (72)
-
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)
-
Save metadata while converting video to images FFmpeg
17 février 2020, par e480582When I convert a video to its constituent images (
ffmpeg -i video.MOV img1%03d.png
), ffmpeg drops all the metadata. How would I save the metadata while converting ? Is there any way to have it also increment the timestamp for each frame ? -
Can't save metadata when convert video files using python ffmpeg
24 novembre 2018, par Oliver KingI tried to us ffmpy library to convert .MOV files into .MP4.
Converting works well, but I can’t save metadata like title and artist.ff = ffmpy.FFmpeg(
inputs={'input.mov': None},
outputs={'output.mp4': None},
global_options=[
'-metadata name=james',
'-metadata artist=Beauty and Beast'
]
)
ff.run() -
pthread_frame : save the FF_DEBUG_THREADS option in PerThreadContext.
10 juillet 2017, par Wan-Teh Changpthread_frame : save the FF_DEBUG_THREADS option in PerThreadContext.
Add the debug_threads boolean field to PerThreadContext. For
PerThreadContext *p, p->debug_threads records whether the
FF_DEBUG_THREADS bit is set in p->avctx->debug, and p->debug_threads and
p->avctx->debug are kept in sync. The debug_threads field is defined as
an atomic_int to allow atomic read by another thread in
ff_thread_await_progress().This fixes the tsan warning that
2e664b9c1e73c80aab91070c1eb7676f04bdd12d attempted to fix :WARNING : ThreadSanitizer : data race (pid=452658)
Write of size 4 at 0x7b640003f4fc by main thread (mutexes : write M248499) :
#0 update_context_from_user [..]/libavcodec/pthread_frame.c:335:19 (5ab42bb1a6f4b068d7863dabe9b2bacc+0xe73859)
[..]
Previous read of size 4 at 0x7b640003f4fc by thread T130 (mutexes : write M248502, write M248500) :
#0 ff_thread_await_progress [..]/libavcodec/pthread_frame.c:591:26 (5ab42bb1a6f4b068d7863dabe9b2bacc+0xe749a1)Signed-off-by : Wan-Teh Chang <wtc@google.com>
Signed-off-by : Ronald S. Bultje <rsbultje@gmail.com>