Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (62)

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

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

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

  • Creating debug build FFMpeg static libraries with Windows compiler

    6 juillet 2015, par LostBoy

    We are using the FFMpeg static libraries compiled via the —toolchain=msvc switch with the VS2010 compiler linked to the static runtime (-MT). These libraries work fine but they are linked to libcmt.lib.

    We would like to compile a debug build of these libraries (i.e. linking against libcmtd.lib). In the configure call I added :

    ./configure --toolchain=msvc --enable-debug --arch=x86 --extra-cflags=-MTd

    This will result in some calls to cl.exe with the -MTd switch but also some with the -MT switch and cause conflicts in the linker stage.

    What am I missing ?

  • ffmpeg Frames to mp4 (Windows)

    8 juillet 2015, par Somax

    I am trying to combine my frames to a video now for like an hour and I have huge problems with ffmpeg. It keeps on telling me that the directory doesnt exist and i have no idea how to make it right...

    ffmpeg is in C :/ffmpeg
    the frames are in C/ffmpeg/render
    they are named : output_0001.png to output_0150.png

    I want to have 24 Frames per secound.
    what do i have to do in the cmd ?

    i tryed like "ffmpeg -r 30 -i c :/ffmpeg/render/output_%24.png video.mp4"

    What am i doing wrong ?

  • How to run script on Windows to get the files from the current directory ?

    8 juillet 2015, par pcroland

    For example I have directory on the Desktop called "encode". It contains a video file and a script. And I want that the script get the files from the folder where the script is.

    for %%a in ("*.mkv") do C:\encode\ffmpeg.exe -i "%%a" -c:a ac3 -b:a 192k "encode\%%~na.ac3"
    pause

    How should I do that ?