Recherche avancée

Médias (91)

Autres articles (96)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

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

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (8350)

  • avformat/assenc : Fix potential NULL + 1

    14 mars 2023, par Andreas Rheinhardt
    avformat/assenc : Fix potential NULL + 1
    

    Incrementing a NULL pointer is undefined behaviour,
    yet this is what would happen in case trailer were NULL
    before the check.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavformat/assenc.c
  • 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

  • Writing video with x264 Fourcc in Videowriter class in opencv

    28 janvier 2015, par Kausic Gunasekkar

    I wanted to do a very simple project of giving a program an input video which is saved in the same directory as "my_video" without any processing steps. I specifically want to use the H.264 compression format. Hence I chose ’X’,’2’,’6’,’4’ Fourcc and the program popped out the following errors.

    broken ffmpeg default settings detected
    use an encoding preset (e.g. -vpre medium)
    preset usage : -vpre -vpre
    speed presets are listed in x264 —help
    profile is optional ; x264 defaults to high
    Could not open codec ’libx264’ : Unspecified error

    So how do I install libx264 and configure it to work with opencv.I tried setting the fourcc value to -1 to do it by hand but no Window popped up requesting me to choose one of the available codec.( isn’t that supposed to happen).

    any help would be appreciated.