
Recherche avancée
Autres articles (54)
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Librairies et logiciels spécifiques aux médias
10 décembre 2010, parPour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)
Sur d’autres sites (7400)
-
FFMPEG output from motion detection is gray
13 septembre 2019, par Eternal_DuskI have taken footage I recorded and wanted to use FFmpeg to cut out still frames of the file, however, I just get a file of the same size, but it is all grayed out.
Command Used :
ffmpeg -i video.mp4 -vf "select=gt(scene\,0.0003),setpts=N/(30*TB)" output.mp4\
This is gameplay of MTG Arena btw
When I run this in FFplay, however, it looks normal.
Still, however, no cuts or removal happen, as it is still the same length video.
At this point I have two questions.
1) How do I cut frames with no motion in FFmpeg
2) Why does this footage appear gray.
My video player is MPC-HC
-
Video freezes when buffer filling
3 septembre 2021, par pablo FiscellaI need to play a video all day without stopping. It works fine until it reaches the full gig (-fs 1000M).
I do not know if it is possible to restart. The loop works but when after an hour it cuts out.


ffmpeg -fflags +genpts -stream_loop -1 -re -i /home/pi/Videos/carteleraMP4.mp4 -vcodec copy -f avi -an -fs 1000M udp://239.0.1.23:1234



When size reaches 1000M the video stops


frame=21395 fps= 24 q=-1.0 size= 175120kB time=00:14:51.43 bitrate=1609.3kbits/frame=21407 fps= 24 q=-1.0 size= 175214kB time=00:14:51.93 bitrate=1609.3kbits/bitrate=1609.3kbits



-
ffmpeg - Video longer than audio after having combined image and audio to video
21 octobre 2017, par Grant SYNKOPI wrote code to combine several audio files with 1 image, into WebM video. (audio1 combined with default jpg, audio2 combined with default jpg, etc).
The problem is that after this, video length is 25 seconds superior to audio length (so audio cuts 25 seconds before the end of the video).
Is there a way to stop the video at the exact same time of the audio ? Here is the code I used (I launch a BAT command file)
@echo off
for %%F in (*.ogg) do (
ffmpeg -loop 1 -framerate 1 -i "default.jpg" -i "%%F" -acodec libopus -b:a 384k -vcodec libvpx-vp9 -lossless 1 -speed 4 -vf scale=1280x720 -shortest "%%F.webm"
)