
Recherche avancée
Médias (1)
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (89)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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 (11796)
-
ffmpeg convert from H.264 (High 4:4:4 Profile) to H.265 (Main Profile)
30 novembre 2022, par David Alonso RuizHow can I convert a video from H.264 (High 4:4:4 Profile) to H.265 (Main Profile 4:2:0) using ffmpeg ?


I can't do that with this command : ffmpeg -i input.mkv -c:v hevc_nvenc -c:a copy output2.mkv


That'd return an error, does not recognize the source format


-
ffmpeg convert from H.264 (High 4:4:4 Profile) to H.265 (Main Profile)
30 novembre 2022, par David Alonso RuizHow can I convert a video from H.264 (High 4:4:4 Profile) to H.265 (Main Profile 4:2:0) using ffmpeg ?


I can't do that with this command : ffmpeg -i input.mkv -c:v hevc_nvenc -c:a copy output2.mkv


That'd return an error, does not recognize the source format


-
Finding library during compliation in mingw64 environment (libgcrypt and libgpg-error)
28 novembre 2016, par AlastairI’m a real beginner at this, so apologies in advance for obvious questions. I’m trying to compile a custom build of ffmpeg that has some extra dependencies the normal build does not. Among those is
libgcrypt
andlibgpg-error
- I know this, because when I runconfigure
, it fails, and the log contains :C:/workspace/windows/msys64/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/6.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot find -lgcrypt
C:/workspace/windows/msys64/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/6.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: cannot find -lgpg-errorWith this in mind, I cloned the repo for libgpg-error, ran
make
andmake install
, which createdlibgpg-error.dll.a
andlibgpg-error.la
in/home/myuser/w64root/lib
. I’ve tried adding this path to my$LIB
environment variable, but the configure run still says it can’t find the library.How can I make it visible ? I also have
pkg-config
available on the machine - would manually creating a.pc
file help me any ?Thanks !