Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (57)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

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

  • MediaSPIP en mode privé (Intranet)

    17 septembre 2013, par

    À partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
    Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
    Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)

Sur d’autres sites (7917)

  • Confirm HLS server is working only with Windows PC

    29 novembre 2013, par user2357117

    I'm going to set up HTTP Live Streaming server.
    In development environment, only Windows PC is available for the server's client due to network restriction and other regulations.

    How can I confirm that

    • server is publishing HLS movie and
    • real-time movie's delay by viewing it

    only with Windows software ?

    This page shows that browser available on Windows does not support HLS.
    I'm prefer solution with free software, so JW Player may not be a best solution.

    I'm not sure that I can check delay on-the-fly with hls-client or ffmpeg.

  • FFMPEG video conversion for pygame

    19 avril 2016, par Vladimir Shevyakov

    I am currently making a program on python (3) using the pygame module. One of the things I need it to do is to play a video which is currently in AVI format.

    From what I managed to understand from the pygame.movie documentation I have to use FFMPEG and not another program to convert the video to an MPEG (I tried it with NCH Prism and the result was quite memorable).

    I managed to convert my file to an MPG using the sample command found in the pygame.movie documentation (ffmpeg -i <infile> -vcodec mpeg1video -acodec libmp3lame -intra </infile>) but the video quality dropped very much. I tried looking at different cites but they never actually had a working example...

    Is there a way to keep the current video quality ? I don’t really care about the file size...

    Thanks in advance !

  • subprocess call ffmpeg (command line)

    23 mars 2017, par user3295674

    I have been incorporating subprocess calls in my program. I have had no issues with subprocess calls for other commands, but I am having trouble getting the command line input

    ffmpeg -r 10 -i frame%03d.png -r ntsc movie.mpg

    To work inside a subprocess.call()

    I tried the following with no success :

    subprocess.call('ffmpeg -r 10 -i %s frame%03.d.png - r ntsc movie.mpg')

    Any thoughts ? Do I separate out different commands, do I specify string, integer etc. with %s, %d ?