Recherche avancée

Médias (91)

Autres articles (106)

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (8470)

  • iOS how to convert video mp4 other codecs in libavcodec [closed]

    17 décembre 2011, par Bai

    I am developing the ios app that captures the video in iPad and uploads the video captured(.mp4) to the server.

    I must convert the video to other codecs for reducing the size of the video. So I am going to use libavcodec.

    But I am beginner in video/audio codecs. I didn't find the method for using libavcodec apis.

    How can I convert the .mp4 video to other codecs using libavcodec ?

  • How a video template can be used to replace with custom images/text on-the-fly using PHP

    8 novembre 2015, par Aamir Siddique

    I am a website developer (php) and I have been given a task to develop a website similar to
    http://ivipid.com/.

    I need to make an identical website and I am trying to figure out how this can be done,
    especially the part in which they use user-uploaded image files and text into the Video file and all this on-the-fly ?

    I know how to convert user-uploaded video files into FLV on-the-fly using FFMPEG but I’m not sure on how they (ivipid.com) manage to do this.

  • Querying an audio/video file for information

    4 juin 2013, par TRiG

    I want a PHP function which receives the path to a file and returns an array of information about it. The PHP file can call FFmpeg.

    Returned data should be something like

    Array(
       [mime]          => video/ogg
       [container]     => Ogg
       [video]         => Theora
       [audio]         => Vorbis
       [duration]      => 20.3 // in seconds
    )

    Array(
       [mime]          => audio/ogg
       [container]     => Ogg
       [video]         =>
       [audio]         => FLAC
       [duration]      => 3
    )

    Array(
       [mime]          => image/gif
       [container]     => GIF
       [video]         => Animated GIF
       [audio]         =>
       [duration]      => 2
    )

    Array(
       [mime]          => video/webm
       [container]     => WebM
       [video]         => VP8
       [audio]         => Vorbis
       [duration]      => 900.7
    )

    false // not a media file

    I've never worked with FFmpeg or with PHP's shell_exec() function, but it seems that FFmpeg will give information about videos (or audio files) in a fairly hard-to-parse format. I assume that something like this is possible, though.