
Recherche avancée
Médias (17)
-
Matmos - Action at a Distance
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Danger Mouse & Jemini - What U Sittin’ On ? (starring Cee Lo and Tha Alkaholiks)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Cornelius - Wataridori 2
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Rapture - Sister Saviour (Blackstrobe Remix)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (107)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (13866)
-
How to link ffmpeg library by cmake ?
19 août 2013, 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
-
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
-
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.