
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (45)
-
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
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 : (...)
Sur d’autres sites (6951)
-
avfilter/video : pick sar from link
7 décembre 2017, par Paul B Mahol -
Overcome MPEG 2 TS Link Buildup Latency
18 février 2015, par user2389323I have built a TS audio video link. I send encoded raw audio and video from one computer to another using TS over Ethernet. I am using FFMPEG libraries for this. Everything works fine except there is a latency build up with time.
When i play the raw video content at both encode and decoder ends, initially there is very little visible latency(less than a second). But when time increases the difference of the two videos slowly increase. I am playing the received video using a fixed frame rate.
As i have understood it is possible to us the PCR value to overcome this latency build up problem but it is not clear to me how to use that value..
Can someone kindly tell me how to use the PCR value of a TS stream to avoid latency build up ?
Thank you.
-
How to link ffmpeg library by cmake ?
20 décembre 2018, par paradisal programmerI want to use ffmpeg library in my c++ program.
I’ve downloaded ffmpeg source.
During make&compile process,
i had this error :
UINT64_C not defined !
After some search :1.Adding the following code to libavutil/common.h
#ifndef INT64_C
#define INT64_C(c) (c ## LL)
#define UINT64_C(c) (c ## ULL)
#endif2.
./configure&compile
had solved that problem.But now i want to link this library to a simple encoding method by using cmake files.
I’ve tried some sample of CMakeLists.txt but i still have
"undefined refrence " error
many thanks !- I am working in ubuntu
- using g++ as c++ compiler
- using FFmpeg 2.0.1