
Recherche avancée
Médias (1)
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
Autres articles (102)
-
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...) -
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)
Sur d’autres sites (6836)
-
FFmpeg : Reading data from 2 FIFO
21 septembre 2019, par user3497661I am working with FFmpeg 4.1.3. I am trying to read video from one named pipe and audio from another named pipe and creating a new output file. There are 2 RTP processes reading data over the network and writing it to these pipes.
I am using following commandline
ffmpeg -report -i /tmp/audio_pipe.pcmu -i /tmp/video_pipe.h264 -y output.ts
When I try to receive from individual pipes,
(ffmpeg -report -i /tmp/audio_pipe.pcmu -y output.ts), it works but using 2 pipes in the same command line seems to block.
I found some 7 year old ticket https://trac.ffmpeg.org/ticket/1663. It says that multiple pipes do not work with FFmpeg.I would like to know if input using multiple pipes works with FFmpeg now and if yes, how to achieve it.
-
Detect duplicate frames to create seamless loops in FFMPEG
19 septembre 2017, par Yasath DiasI feel like this should be possible, after I saw a method created with MoviePy for Python (this article). Essentially, I want to import an MP4 at 1920x1080 with say 12000kbps bitrate and have FFMPEG detect when there are duplicate frames that aren’t consecutive and export each one of these small sequences to small individual MP4 files that loop seamlessly (the first frame is almost the same as the last frame like this one).
A 1920x1080 file may be far too large (in resolution) to process, so I would be fine with downscaling that to around 120px wide. Also, I know that FFMPEG can detect duplicate frames because I’ve often used
mpdecimate
previously.I hope I described the issue well enough, but will be willing to clarify, of course :)
-
avformat/hlsenc : Check that data is set
21 janvier 2018, par Brendan McGrathavformat/hlsenc : Check that data is set
If codecpar->extradata is not set (for example, when the stream goes
through the 'tee' muxer), then a segfault occurs.
This patch ensures the data variable is not null before attempting
to access it
Before the var_stream_map option was available - I was using the tee
muxer to create each resolution as an individual stream.
When running this configuration after the most recent hlsenc change
I hit a segfault
The most simple command which recreates the segfault is :
ffmpeg -i in.ts -map 0:a -map 0:v -c:a aac -c:v h264 -f tee [select=\'a,v\':f=hls]tv_hls_hd.m3u8Signed-off-by : Brendan McGrath <redmcg@redmandi.dyndns.org>