
Recherche avancée
Médias (1)
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (99)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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 (8581)
-
What libraries needed to link FFMPEG in ubuntu 64bit ?
12 mai 2016, par mofed8461After compile FFMPEG, and use it in my project, what system libraries do i need to link in order to use FFMPEG in my C++ project so its not generating "undefined reference error" ?
in Mac OS X i usually link these libraries :
FIND_LIBRARY(LIB_Z libz.1.dylib)
FIND_LIBRARY(LIB_BZ2 libbz2.1.0.dylib)
FIND_LIBRARY(LIB_ICONV libiconv.2.dylib)
FIND_PACKAGE(CoreVideo REQUIRED)
FIND_PACKAGE(CoreMedia REQUIRED)
FIND_PACKAGE(Foundation REQUIRED)
FIND_PACKAGE(AVFoundation REQUIRED)
FIND_PACKAGE(IOKit REQUIRED)
FIND_PACKAGE(Cocoa REQUIRED)
FIND_PACKAGE(Security REQUIRED)
FIND_PACKAGE(CoreFoundation REQUIRED)
FIND_PACKAGE(VideoDecodeAcceleration REQUIRED)
FIND_PACKAGE(VideoToolbox REQUIRED)but in Ubuntu i don’t know what to link ?!
-
msvs : Prefer link.exe from the same directory as cl.exe
26 juillet 2015, par Henrik Gramner -
Android NDK : How to link FFMPEG libraries with CPP files ?
2 décembre 2011, par AlexI'm building with Android NDK as follows :
I have a CPP file in which I have something like
extern "C"
#include
CMyClass::MyFunc()
av_register_all() ;
I link it with static FFMPEG libraries which I've built separately using the procedure described elsewhere.
It gives me
undefined reference av_register_all()
error.When in the same file I have, instead, something like
extern "C" void func() {
av_register_all();
}everything links and works fine.
So, how do I link FFMPEG libs with cpp files in Android ?