
Recherche avancée
Autres articles (44)
-
L’espace de configuration de MediaSPIP
29 novembre 2010, parL’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
Il permet de configurer finement votre site.
La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
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 (...)
Sur d’autres sites (5923)
-
How does subtitle hardcoding works in ffmpeg ?
1er avril 2016, par Ketan KulkarniThe manual for the same is available on :
http://superuser.com/questions/838072/ffmpeg-hardcoding-burning-filename-in-video
https://trac.ffmpeg.org/wiki/HowToBurnSubtitlesIntoVideoSample command is :
ffmpeg -i video.avi -vf subtitles=subtitle.srt out.avi -
How does subtitle hardcoding work in ffmpeg ?
1er avril 2016, par Ketan KulkarniThe manual for the same is available on :
http://superuser.com/questions/838072/ffmpeg-hardcoding-burning-filename-in-video
https://trac.ffmpeg.org/wiki/HowToBurnSubtitlesIntoVideoSample command is :
ffmpeg -i video.avi -vf subtitles=subtitle.srt out.avi -
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 ?