Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (36)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (9786)

  • configure : instruct MSVC 2015 to properly process UTF-8 string literals

    3 février 2017, par Hendrik Leppkes
    configure : instruct MSVC 2015 to properly process UTF-8 string literals
    

    Without the /UTF-8 switch, the MSVC compiler treats all files as in the
    system codepage, instead of in UTF-8, which causes UTF-8 string literals
    to be interpreted wrong.

    This switch was only introduced in VS2015 Update 2, and any earlier
    versions do not have an equivalent solution.

    Fixes fate-sub-scc on MSVC 2015+

    • [DH] configure
  • exception on ffmpeg dll from a c++ visual studio 2015 project

    1er juillet 2017, par user1019140

    I want to use ffmpeg library in a Visual Studio project.
    I want to build an app for WIN32, so I downloaded :

    C:\Users\exa\Downloads\ffmpeg-3.3.2-win32-shared.zip
    C:\Users\exa\Downloads\ffmpeg-3.3.2-win32-dev.zip

    I copied the dlls from the shared zip to the same directory as my generated exe file. And I unzipped the dev zip into a directory of a different project of the same solution called MEDIA_IO.

    Then in the project properties , I added "additional include directories" :

    ..\MEDIA_IO\ffmpeg-3.3.2-win32-dev\include

    and under the linker, I added "Link library dependencies" :

    ..\MEDIA_IO\ffmpeg-3.3.2-win32-dev\lib

    and "Additional dependencies" :

    ..\MEDIA_IO\ffmpeg-3.3.2-win32-dev\lib\swscale.lib
    ..\MEDIA_IO\ffmpeg-3.3.2-win32-dev\lib\avutil.lib
    ..\MEDIA_IO\ffmpeg-3.3.2-win32-dev\lib\avcodec.lib
    ..\MEDIA_IO\ffmpeg-3.3.2-win32-dev\lib\avformat.lib
    ..\MEDIA_IO\ffmpeg-3.3.2-win32-dev\lib\avfilter.lib
    ..\MEDIA_IO\ffmpeg-3.3.2-win32-dev\lib\postproc.lib
    ..\MEDIA_IO\ffmpeg-3.3.2-win32-dev\lib\swresample.lib
    ..\MEDIA_IO\ffmpeg-3.3.2-win32-dev\lib\avdevice.lib

    I include the headers using :

    extern "C"
    {
    #include <libavcodec></libavcodec>avcodec.h>
    #include <libavformat></libavformat>avformat.h>
    #include <libavutil></libavutil>imgutils.h>
    #include <libavutil></libavutil>samplefmt.h>
    #include <libswscale></libswscale>swscale.h>
    #include <libavutil></libavutil>avstring.h>
    #include <libavutil></libavutil>intreadwrite.h>
    }

    The app compiles fine, but when running it, I’m getting exceptions on many different ffmpeg functions.

    For examples, when running :

    SwsContext * ctx = sws_getContext(560, 320, AV_PIX_FMT_YUV420P, 560,320, AV_PIX_FMT_RGB24, 0, NULL, NULL, NULL);

    I get exception :

    Exception thrown at 0x57E05140 (swscale-4.dll) in UnitTest1.exe: 0xC0000006: In page error executing location 0x57E05140 (status code 0xC0000008).
    Unhandled exception at 0x57E05140 (swscale-4.dll) in UnitTest1.exe: 0xC0000006: In page error executing location 0x57E05140 (status code 0xC0000008).

    It does not tell what are status codes 0xC0000006 and 0xC0000008.
    I dug a lot and could not find the source of the problem.

  • Problem compiling ffmpeg with nvenc using visual studio 2015 community edition

    23 février 2020, par Uri Raz

    I’m trying to build ffmpeg w/ nvenc on Windows 10 64 bit and visual studio 2015 community edition. The command from step 10 in the Using FFmpeg with NVIDIA GPU Hardware Acceleration doc :

    ./configure —enable-nonfree —enable-cuda-sdk —enable-libnpp –-toolchain=msvc —extra-cflags=-I../nv_sdk —extraldflags=-libpath :../nv_sdk

    Gives me the error ’Unknown option "–-toolchain=msvc"’

    Background : I’ve executed the commands (changed the path in the first, I’m not sure its right) :

    export PATH="/C/Program Files (x86)/Microsoft Visual Studio/2017/Community/VC/Tools/MSVC/14.16.27023/bin/Hostx64/x64/" :$PATH
    export PATH="/c/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.0/bin/" :$PATH

    And ../nv_sdk has the subdirectories include & bin, copied from the NVIDIA GPU Computing Toolkit directory.