
Recherche avancée
Médias (16)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (32)
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)
Sur d’autres sites (4388)
-
Why ffmpeg developers using "runtime if" with macrofied condition
4 avril 2022, par Pavel KorotkevichI'm looking to FFmpeg source code and I find it weird to use weird code like this :


#define MACRO 0
void func(void)
{
 if (MACRO) 
 {
 //code
 }
}



Is there any reason to use "if" instead of "#if ... #endif" when dealing with macros ?


Some examples of this in ffmpeg repo


- 

- GitHub - libavcodec/me_cmp.c
- GitHub - libavcodec/h264pred.c
- GitHub - libavcodec/h264qpel.c
- GitHub - libavcodec/h264chroma.c
- GitHub - libavcodec/h264dsp.c
- GitHub - libavcodec/videodsp.c
- GitHub - libavutil/cpu.c
















-
Why do ffmpeg developers use "runtime if" with macrofied condition ?
6 avril 2022, par Pavel KorotkevichI'm looking to FFmpeg source code and I find it weird to use weird code like this :


#define MACRO 0
void func(void)
{
 if (MACRO) 
 {
 //code
 }
}



Is there any reason to use "if" instead of "#if ... #endif" when dealing with macros ?


Some examples of this in ffmpeg repo


- 

- GitHub - libavcodec/me_cmp.c
- GitHub - libavcodec/h264pred.c
- GitHub - libavcodec/h264qpel.c
- GitHub - libavcodec/h264chroma.c
- GitHub - libavcodec/h264dsp.c
- GitHub - libavcodec/videodsp.c
- GitHub - libavutil/cpu.c
















-
HLS "bufferStalledError" / "bufferNudgeOnStall"
20 avril 2022, par YagoI'm trying to stream videos with HLS.js, and it works perfectly fine, but when I separate the audio from the video to support multiple audio tracks, it returns these two errors at random times in the video ("bufferStalledError" and "bufferNudgeOnStall").


I've tried using pure ffmpeg, I've tried using shaka packager, and I'm currently using bento4, but this error always occurs


(my bento4 code)


mp4hls --hls-version 4 -o "${outputFolder}" -f
[type=audio,+language=Japanese]"${inputFolder}${epFolder}/1080p.mp4"
[type=video]"${inputFolder}${epFolder}/1080p.mp4"
[type=video]"${inputFolder}${epFolder}/720p.mp4"
[type=video]"${inputFolder}${epFolder}/480p.mp4"
[type=video]"${inputFolder}${epFolder}/360p.mp4"
[type=video]"${inputFolder}${epFolder}/240p.mp4"