Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (30)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP 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 (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP 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 (...)

Sur d’autres sites (5111)

  • Automatically change MANGLE() into named inline asm operands when direct symbol refer...

    18 mars 2014, par Matt Oliver
    Automatically change MANGLE() into named inline asm operands when direct symbol reference in inline asm are not supported.
    

    This is part of the patch-set for intel C inline asm on windows support

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] configure
    • [DH] libavcodec/x86/cabac.h
    • [DH] libavcodec/x86/cavsdsp.c
    • [DH] libavcodec/x86/dsputil_mmx.c
    • [DH] libavcodec/x86/h264_i386.h
    • [DH] libavcodec/x86/idct_sse2_xvid.c
    • [DH] libavcodec/x86/lpc.c
    • [DH] libavcodec/x86/motion_est.c
    • [DH] libavcodec/x86/simple_idct.c
    • [DH] libavcodec/x86/vc1dsp_mmx.c
    • [DH] libavutil/x86/asm.h
    • [DH] libpostproc/postprocess_template.c
    • [DH] libswresample/x86/resample_mmx.h
    • [DH] libswscale/x86/rgb2rgb_template.c
    • [DH] libswscale/x86/swscale_template.c
    • [DH] libswscale/x86/yuv2rgb_template.c
  • LNK 2019 unresolved symbol - FFmpeg

    7 juin 2013, par Cristina1986

    I'm trying to use FFmpeg to open and read a video .avi
    I work on win7 x64 with Visual Studio 2010

    For now my code is very simple :

    #include "libavcodec/avcodec.h"
    #include "libavformat/avformat.h"
    #include "SDL.h"
    #include "SDL_mixer.h"


    int main (int argc, char *argv[]) {

    AVFormatContext *pFile_video;
    int             s, videoStream;
    AVCodecContext  *pCodecCtx;
    AVCodec         *pCodec;
    AVFrame         *pFrame;
    AVFrame         *pFrameRGB;
    AVPacket        packet;
    int             frameFinished;
    int             numBytes;
    uint8_t         *buffer;

    av_register_all();

       if((avformat_open_input(&amp;pFile_video, "AR.avi", NULL,NULL)!=0)) cout &lt;&lt;"cannot open video file"&lt;/if(av_find_stream_info(pFile_video) &lt;0) cout &lt;&lt;"cannot retrive stream information"&lt;nb_streams;s++){
           if((pFile_video->streams[s]->codec->codec_type) == AVMEDIA_TYPE_VIDEO) videoStream =s;
       }
       if(videoStream ==-1) cout &lt;&lt;"cannot open video stream"&lt;code>

    I linked following .lib files :

    avcodec.lib
    avdevice.lib
    avfilter.lib
    avformat.lib
    avutil.lib
    postproc.lib
    swresample.lib
    swscale.lib

    but I get these errors :

    >MSVCRTD.lib(cinitexe.obj) : warning LNK4098: la libreria predefinita &#39;msvcrt.lib&#39; è in conflitto con l&#39;utilizzo di altre librerie; utilizzare /NODEFAULTLIB:libreria
    1>main_video_ffmpeg.obj : error LNK2019: riferimento al simbolo esterno "int __cdecl avformat_open_input(struct AVFormatContext * *,char const *,struct AVInputFormat *,struct AVDictionary * *)" (?avformat_open_input@@YAHPAPAUAVFormatContext@@PBDPAUAVInputFormat@@PAPAUAVDictionary@@@Z) non risolto nella funzione _SDL_main
    1>main_video_ffmpeg.obj : error LNK2019: riferimento al simbolo esterno "void __cdecl av_register_all(void)" (?av_register_all@@YAXXZ) non risolto nella funzione _SDL_main
    1>C:\Users\Cristina\Desktop\OpenCV\Progetti\MIEI_PROGETTI_Vs\video_ffmpeg\Debug\video_ffmpeg.exe : fatal error LNK1120: 2 esterni non risolti

    I think it is a linker error.. but I haven't other .lib file for FFmpeg library.

  • win{32,64} : Hard disable symbol versioning

    19 novembre 2013, par Derek Buitenhuis
    win32,64 : Hard disable symbol versioning
    

    ICL doesn’t return an error on unknown parameters, and will
    always pass the symver_gnu_asm test, and since Windows
    never has symbol versioning, just always disable it.

    Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>

    • [DH] configure