Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (27)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (5094)

  • Android NDK. How to play video.

    4 février 2014, par bukka.wh

    I need to play video on Android device (different formats). As I have understand, the best way is to use Android NDK with specific libraries that can play video. I have done some basic examples to understand NDK usage, but I don't know what to do next. As I have understood, I must install ffmpeg first of all.
    So I have the following questions given below :

    1. I need to have ffmpeg (the best way is to use Linux, not Windows,
      because in Windows there are some troubles with its installation).
    2. How to play sound of video ?
    3. I have read that some open-source libraries can play video without any efforts. My job is to give them byte-array or path to video on SD. Is this right ?

    So, can anyone help me and explain basic ways how to play video with ndk, may be some basic plan or links ?
    Thank you very much for interest to my question !

  • how to make rtmp streaming player on windows phone 8

    9 avril 2014, par user3334845

    i am making basic online live tv program on wp8.I'am use to Microsoft.Web.Media.SmoothStreaming framework and Microsoft Player Framework (Microsoft.PlayerFramework.WP8.Core, Version=1.8.2.2). My app is play http mms and rtsp with this framework. But not play rtmp live streams :S. I'm stucked. I'm search about how play rtmp on wp8. And i am found two thinks :
    1-) ffmpeg core (librtmp) (https://code.google.com/p/rtmp-mediaplayer/)
    2-)FluorineFx (http://www.fluorinefx.com/download.html)

    i am trying first librtmp but this code is so complex for me:S
    and i am trying B plan FluorineFx, install it and trying add dll wp8 reference but program get error "this dll is making for visual studio 2008", and trying FluorineFx samples in programfiles directory, but same error vs2008 works not current:S.

    I'm stuck here please help me.

  • Converting a YUV file to .mp4 using ffmpeg for a beginner

    11 mars 2014, par GreenGodot

    I'm a newbie when it comes to linux and ffmpeg but I need to use Evalvid to stream a video file. I want to stream a file for around 500 seconds. My plan is to download one of the videos from here :

    http://media.xiph.org/

    For this example I downloaded a video of Big Buck Bunny (in this case the 480p version). it came in an xz which I used unxz on, getting me a .y4m file which I used ffmpeg to convert to a YUV file.

    ffmpeg -i big_buck_bunny_480p24.y4m bbb.yuv

    My problem is right here, I try to use examples from this site but they don't work. What is the exact command to convert it to a .mp4 file using ffmpeg or are their easier alternatives to use ?

    I have tried :

    ffmpeg -f rawvideo -s:v 1920x1080 -r 25 -i bbb.yuv -c:v libx264 output.mp4

    and this starts the conversion process but after 5 minutes I get an invalid buffer value error and the output is a mess of colours.