
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (12)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
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 (...) -
Qu’est ce qu’un éditorial
21 juin 2013, parEcrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
Vous pouvez personnaliser le formulaire de création d’un éditorial.
Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)
Sur d’autres sites (4620)
-
problem with brackets in video name ffmpeg php [duplicate]
26 avril 2019, par Hadi AhmadiThis question already has an answer here :
I’m using ffmpeg to put a watermark on video but when my video has a name that contains brackets it’s not doing anything
$a = "10 (1).mp4";
$cmd = "$ffmpeg -i $a -i $logo -filter_complex \"[1]colorchannelmixer=aa=0.7,scale=iw*0.4:-1[wm];[0][wm]overlay=x=(main_w-overlay_w):y=(main_h-overlay_h)/(main_h-overlay_h)\" watermarked1.mp4";
exec($cmd);when I change the name to 10 its working
-
problem : FFMPEG seeking with av_seek_frame using byte positions
16 juillet 2012, par Nick VerlindenI am trying to get the av_seek_frame() function to go to a byte position I specify. I am implementing a frame accurate seeking mechanism for my application, and the way I see it, I will scan the entire video file, and store byte positions for each keyframe in a struct. I found out where to get the current byte position : AVPacket.pos. I now test this position with
av_seek_frame
like this :av_seek_frame( pFormatCtx, videoStream, 110285594, AVSEEK_FLAG_BYTE);
However, this does not seem to do the right thing, when I call
av_read_frame
, it just starts with frame 23. If I do not seek, it starts at frame 1. -
Clipping audio problem on ffmpeg live stream
20 mars 2019, par Ivan Bombash Stokicin 30-40% of the live stream i get some king of distortion or clipping in the streamed audio and i have no idea why, is is only because low hardware performance maybe ? I am running the stream on a Raspberry pi 3b+ CPU usage while streaming from 25 to 30% Ram usage 28% , storage device is a USB pen drive.
Here is the code :
ffmpeg -re -f alsa -i default -re -stream_loop -1 -i "/home/pi/Documents/Youtube/video720p.mp4" -c:v copy -c:a aac -f flv -max_muxing_queue_size 400 rtmp://a.rtmp.youtube.com/live2/pfjd-jhjs-k3td-xxxx
Or i should buffer it before streaming or re-encode the audio before streaming ?
Thanks in advance !