
Recherche avancée
Autres articles (48)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...)
Sur d’autres sites (6825)
-
Revert "Revert "Merge commit ’d1d7678040cd60148f97b372cb4291bcc45b2e22’""
4 août 2016, par Timothy GuRevert "Revert "Merge commit ’d1d7678040cd60148f97b372cb4291bcc45b2e22’""
This reverts commit e4af9be0f45c8f2ca148fb971f1e0c6782530e8c and redoes
796027f22154c799e0063e2457b31e0cfd1dddae.Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
-
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"



-
How to use libraries ".lib" and ".a" files in GCC
12 novembre 2022, par Blue SkyI have simple C code that uses some functions of
libavcodec
in FFmpeg. I try to compile the code with GCC (on Windows using MinGW) as follows :

gcc -o mycode mycode.c



But I get a lot of errors like "undefined reference to av_free". I know that these functions are defined in the libraries of FFmpeg. I do access files like
avcodec.lib
andlibavcodec.dll.a
, but I don't know how to use them with GCC so that I can compile and make my file. How can I solve this problem ?