Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (72)

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

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

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (9191)

  • Building and using OpenCV as a static library with Ffmpeg

    11 octobre 2016, par Matt Hammond

    I’m trying write an OpenCV application. I’ve statically built OpenCV from source as I don’t want dll files and my project compiles as long as I don’t use cv::VideoCapture, in which case I get a link error LNK2019 unresolved external symbol.

    I think this is because the cv::VideoCapture uses ffmpeg to work with video, which, because of it’s license, cannot be statically linked in my project. I would be ok with linking the ffmpeg dynamically but I’m having trouble doing this. There is a opencv_ffmpeg310_64.dll file in the %OpenCV_DIR%\bin folder, but I’m clueless about how to dynamically link it to my project. Usually I have .lib files that come with the .dll but I can’t find them anywhere.

    Is it possible to statically link OpenCV and dynamically link ffmpeg, and how should I go about doing this ?

    Additional info :

    • Windows 10
    • Visual Studio 2015
    • OpenCV 3.1.0 x64 build
  • FFMPEG : Writing raw planar sample format into a file

    24 juin 2013, par user2439801

    i've started using ffmpeg on Visual Studio 2010 and encounter some problem on writing planar audio samples into a file.

    For packed sample format i just use :

    fwrite(audio_data[0], 1, audio_bufsize, audio_file);

    where audio_data[0] is my buffer and audio_buffsize is the size of my buffer and audio_file is the pointer to my file.

    When i use this line to write packed sample format everything seems to be fine, but when i try to write planar sample format i got the sound but with a lot of noises.

    So is there better (or correct) way to write planar sample format or do i have to resample it into packed sample format ?

    Thanks

  • ffmpeg avcodec_get_frame_defaults was declared deprecated [on hold]

    14 avril 2019, par n2v2rda2

    To make ffmpeg simple player

    I refer to ffmpeg sample code
    (https://github.com/phamquy/FFmpeg-tutorial-samples/blob/master/tutorial03.c)

    In window 7 with visual studio 12

    First I made cmd-project, all link, and complie is OK

    But when I press F5 in vs12

    **1>ConsoleApplication1.cpp (141): error C4996: 'avcodec_get_frame_defaults': was declared deprecated
      Failed | ConsoleApplication1\ConsoleApplication1.vcxproj [Debug|x64]**

    What happen with me ?

    I download latest ffmpeg DLL again, but noting is changed