Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (94)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

  • Personnaliser l’affichage de mon Médiaspip

    27 mai 2013

    Vous pouvez modifier la configuration du squelette afin de personnaliser votre Médiaspip Voir aussi plus d’informations en suivant ce lien
    Comment supprimer le nombre de vues d’affichage d’un média ?
    Administrer > Gestion du squelette > Pages des articles et médias Cocher dans "Informations non affichées sur les pages de médias" les paramètres que vous ne souhaitez pas afficher.
    Comment supprimer le titre de mon Médiaspip dans le bandeau horizontal ?
    Administrer > Gestion du squelette > (...)

Sur d’autres sites (4362)

  • x264 rate control set

    2 juillet 2015, par chinayin

    I have been learning x264 encode for months. What I need is to control the rate and get an average bitrate. Following is my set, I got an average bitrate but the picture quality is bad, so I need your suggestion or something that can help me learn more about x264.

    Params.rc.i_rc_method = X264_RC_ABR ;
    Params.rc.i_bitrate = nBitRate*0.65/1000  ;
    Params.rc.i_vbv_buffer_size = nBitRate/1000;
    Params.rc.i_vbv_max_bitrate = nBitRate*0.65/1000 ;
    Params.rc.f_vbv_buffer_init = 1.0 ;
    Params.rc.f_rate_tolerance = 1.0 ;                              
    Params.i_fps_num =  ParamIn.dFrameRate*0.6 ;
    Params.i_fps_den = 1 ;
    Params.i_width = ParamIn.nWidth ;
    Params.i_height = ParamIn.nHeight ;
  • Playing RTSP stream in Android

    9 décembre 2014, par Kamil

    I’m trying to play video stream on Android device. Unfortunatelly I still get the same problem with MediaPlayer/VideoView. I’m searching for a few days, but still haven’t found any working solution.
    For test purposes I’m using MediaPlayer app from API Demos (API Demos/Media/MediaPlayer/Play Streaming Video).
    Here is code snippet for playing stream

    mMediaPlayer = new MediaPlayer();
    mMediaPlayer.setDataSource(path);
    mMediaPlayer.setDisplay(holder);
    mMediaPlayer.prepare();
    mMediaPlayer.setOnBufferingUpdateListener(this);
    mMediaPlayer.setOnCompletionListener(this);
    mMediaPlayer.setOnPreparedListener(this);
    mMediaPlayer.setOnVideoSizeChangedListener(this);

    When I try to play stream I get this info from logcat
    http://pastebin.com/5Uib5CH5

    This is configuration of ffserver streaming the video

    Port 8090
    BindAddress 0.0.0.0

    RTSPPort 7654
    RTSPBindAddress 0.0.0.0

    MaxHTTPConnections 2000
    MaxClients 1000
    MaxBandwidth 10000

    CustomLog -
    NoDaemon
    <Feed feed1.ffm>

    File /tmp/feed1.ffm
    FileMaxSize 5M

    Launch ffmpeg -i mmsh://tempserv.cam/vid1

    ACL allow 127.0.0.1

    </Feed>

    <Stream rat1.mpg>
    Feed feed1.ffm
    Format rtp
    NoAudio
    VideoBitRate 56k
    VideoBufferSize 40
    VideoFrameRate 12
    VideoSize 176x144
    VideoGopSize 12
    VideoCodec libx264
    AVPresetVideo baseline
    </Stream>

    If anyone can advise me how to fix it, or at least indicate an mistake, I will be grateful.

  • Virtual host compared to multiple servers

    9 septembre 2011, par josiecat

    This may be dumb but has me wondering why and I know how to setup the virtual host but need to know the why or what it is good for.

    Why do you setup virtual host for local development and why not just put sub directories ?

    What are the real world uses and how do you use virtual host ?

    (my normal set up as of now)
    I use Mamp and just put more folders (speaking dummy terms here) in the htdocs folder. Is that ok what am I missing ?

    The reason why I would like to use virtual hosting is because I would like to have a few servers to try different technologies (e.g. adding ffmpeg support for streaming video and many others ) but do I use virtual hosting to be able to have more than one server or do I need to use something like virtual machine to have multiple servers with different versions of PHP, Mysql etc...?

    I understand how to set this stuff up just don't understand the difference from virtual host to multiple servers ? could I actually set up one with php just the basic and another for php with ffmpeg-php and other stuff like zend or what ever just to have different server environments to basically mock the actual server that the project will land when done ?