Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (89)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

Sur d’autres sites (3232)

  • A third-party library (FFMpeg) is spamming output

    14 janvier 2015, par Maciej Stachowski

    I’m using otherwise brilliant AForge library in my console project to encode video. When I run the project from under Visual Studio (both in Debug and Release modes), it works fine. However, running it as a stand-alone application produces the following :

    errors

    (the prompt being in the third line is an artifact of me using Console.SetCursorPosition extensively).

    As far as I can tell, there’s no way to configure ffmpeg from under AForge to avoid this error, and the resulting video files are fine anyway, so I’d like to simply shut it up.

    It seems, however, that even setting

    Console.SetError(StreamWriter.Null);
    Console.SetOut(StreamWriter.Null);

    does nothing - my app is trying to write something in the first two lines (another oddity), but gets spammed out by ffmpeg output.

    Can I do anything about it ?

  • avcodec/dcadec : fix error message suppression code

    16 avril 2014, par Michael Niedermayer
    avcodec/dcadec : fix error message suppression code
    

    Fixes part of Ticket3466
    Found-by : Andrey_Karpov / PVS-Studio
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/dcadec.c
  • Use ffprobe on Sagemaker Jupyter Notebook : /bin/sh : 1 : ffprobe : not found

    2 juillet 2020, par Guu

    I need to use FFprobe to get the metadata(the orientation of the video) of videos on SageMaker Studio. Even I installed FFmpeg and FFprobe via pip install, the notebook doesn't recognize the packages.

    &#xA;

    /bin/sh: 1: ffprobe: not found

    &#xA;

    It is tricky since I've already tried to install them on System terminal and it worked, but it still doesn't work on the Image terminal or Jupyter Notebook.

    &#xA;

    Is that because of the dependencies ? I've checked other ways to get the metadata but couldn't find one working. I could get simple metadata via hachoir-metadata but it didn't give the orientation. Any advice is welcomed. Thanks.

    &#xA;