Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (104)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

Sur d’autres sites (11529)

  • video hosting with PHP api or PHP script for social network project

    17 avril 2014, par al404IT

    I have a project for a small social network where user can upload their videos, video should not be longer than 1 or 2 minutes but they need to be private and related to user that uploaded.

    Since uploaded video may be in many different format I have two options :

    • upload video and use ffmpeg to process them, can i find any PHP script that does that ? PROS I have my files on my server and I'm not dependent from third party CONS I guess is a real intensive task and I may need a quite good noting plan since the beginning of this project

    • use a video hosting service that provide API to upload and process video, i actually find vzaar.com that may seems to do what I need. PROS Scalable CONS I rely on third party for my contents

    since the project is a small social network it may be interesting this too opusphp.com, but i never user or read about

    can Vimeo PRO suite my needs ? Other suggestions ?
    In future it may be necessary to add a basic video editing function to trim uploaded video setting starting and ending point

  • avfilter/vf_ssim360 : Use correct type in sizeof

    12 mars 2023, par Andreas Rheinhardt
    avfilter/vf_ssim360 : Use correct type in sizeof
    

    SSIM360Context.ssim360_hist is an array of four pointers to double ;
    so sizeof(*ssim360_hist[0]) (=sizeof(double)) is the correct size
    to use to calculate the amount of memory to allocate, not
    sizeof(*ssim360_hist) (which is sizeof(double*)).

    Use FF_ALLOCZ_TYPED_ARRAY to avoid this issue altogether.

    Fixes Coverity issue #1520671.

    Reviewed-by : Anton Khirnov <anton@khirnov.net>
    Reviewed-by : Jan Ekström <jeebjp@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavfilter/vf_ssim360.c
  • how to find video and audio stream times without the deprecated values ? libav 10.5

    23 novembre 2014, par Narayana James Emery

    After looking into the documentation, AVStream.pts has been deprecated. Before I was using this loop to try and get the video and audio time. it’s the same as whats in the api-example.c (which no longer works) :

    if (audioStream_)
       {
           VideoTime = (double)videoStream_->pts.val*videoStream_->time_base.num/videoStream_->time_base.den;
           do
           {
               AudioTime = (double)audioStream_->pts.val*audioStream_->time_base.num/audioStream_->time_base.den;
               ret = WriteAudioFrame();
           }
           while (AudioTime &lt; VideoTime &amp;&amp; ret);
           if (ret &lt; 0)
               return ret;
       }

    what is the current alternative ? I haven’t been able to get anything to work as of yet and I’ve been searching for around 3 hours.