
Recherche avancée
Médias (10)
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (112)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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" (...)
Sur d’autres sites (14984)
-
Unknown Decoder in ffmpeg
17 mars 2020, par user6782547I have a script, that is called from Plex after the recording of a movie. This script just crops the black borders of the movie.
When I call it directly from the command line, it works flawlessly. But when Plex calls it, it says : "
Unknown decoder
", even if I call it with the key word "auto
" for the decoder.There’s another problem, that might give a hint to solve my problem. It also says : "
WARNING: library configuration mismatch
". (Only when being called from Plex.) This is probably, because I compile ffmpeg from the Debian source package (so that I can add the whole CUDA functionality).
I had a look at the dynamic linker path, but it is empty on the command line.What is so different, when this command is called from Plex, than when I call it manually from the command line ?
Thanks for any help
-
Ending a video segment on a non-key frame while preserving codec
13 août 2020, par painfulenglishI want to extract a segment from the middle of a video while keeping the original encoding. I understand that I need to start that segment on a keyframe. However, I would think that it should in principle be possible to end the segment on an arbitrary frame. Can anyone confirm that and provide an example for how to achieve this using ffmpeg ? It seems that
-c:v copy
enforces key frames at both ends and the same is true when using the-segment
option.

My current commands have the form (times and frames are examples and do not match)


ffmpeg -ss 00:00:05 -i test.mp4 -to 00:00:10 -c:v copy test_cut.mp4



or


ffmpeg -i test.mp4 -codec copy -map 0 -f segment -segment_frames 80,140 test_%03d.mp4



-
ffmpeg with multiple live inputs [closed]
9 juin 2013, par maddaniowe are trying to get ffmpeg to combine multiple live streams into one. In principle we got it to work by mosaicing the streams like so :
ffmpeg -rtsp_transport tcp -r 25 -i rtsp ://root:password@192.168.178.91:554/axis-media/media.amp \
-rtsp_transport tcp -r 25 -i rtsp ://root:password@192.168.178.92:554/axis-media/media.amp \
-filter_complex "[0:0]pad=iw*2:ih[a] ;[a][1:0]overlay=w" ...the problem though is that ffmpeg seems to start the input streams at significantly different times, so that there is about a 1 second shift between the streams, that remains throughout. Now we do have correct time stamps (pts) on both streams. Can we somehow tell ffmpeg to respect those and use them to align the streams correctly ?