Recherche avancée

Médias (1)

Mot : - Tags -/framasoft

Autres articles (74)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (16135)

  • Merge commit ’dc923bc23b3efd949d0bf67ff1abdb95059e5843’

    22 octobre 2015, par Hendrik Leppkes
    Merge commit ’dc923bc23b3efd949d0bf67ff1abdb95059e5843’
    

    * commit ’dc923bc23b3efd949d0bf67ff1abdb95059e5843’ :
    qsvenc : add an API for allocating opaque surfaces

    Merged-by : Hendrik Leppkes <h.leppkes@gmail.com>

    • [DH] doc/APIchanges
    • [DH] libavcodec/qsv.h
    • [DH] libavcodec/qsvenc.c
    • [DH] libavcodec/qsvenc.h
  • Shared library compiles but has undefined references

    12 novembre 2015, par whrrgarbl

    I have two projects. Project "vDevice" compiles into "libvDevice.so". This library is then used by the other project "videoViewer", which compiles into a binary "app_videoViewer". These were both working fine before I added a call to avdevice_reigster_all() in one of vDevice’s files.

    vDevice.so compiles and links with no errors. In the makefile I have -L${FFMPEG_PATH} (where all the libav*.a files are located), and -l avformat, avcodec, avutil, asound, avdevice, and bz2 (in that order).

    When I try to make videoViewer now, I get this error :

    Linking application app_videoViewer ...
    /path/to/lib/libvDevice.so: undefined reference to `avdevice_register_all'
    collect2: error: ld returned 1 exit status

    For videoViewer I added the same things to the makefile, linking to avformat, avcodec, avutil, asound, avdevice, and bz2, all before vDevice... what am I missing ?

  • How to create a video thumbnail without ffmpeg or HTML5 video canvas ? [duplicate]

    14 mai 2014, par user3631926

    This question already has an answer here :

    I need to create a thumbnail from a video, I have tried the below options but they didn’t work for my case. I am using S3 and CloudFront.

    1. ffmpeg is not supported via my hosting because I am using a shared hosting and I need to upgrade to VPS or dedicated server if I want to use ffmpeg.

    2. I tried taking a screenshot from the video using HTML5 drawImage and toDataURL functions, but it is throwing SecurityError because my video file is located on Amazon CloudFront and my code is hosted somewhere else.

    Is there any other option or a workaround to the second option ? I don’t want to upgrade my server for just the thumbnail issue.