Recherche avancée

Médias (91)

Autres articles (104)

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

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (5637)

  • creating thumbnail from a video using ffmpeg in php exec() returns 1 but returns 0 if command is 'ffmpeg -h'

    23 septembre 2013, par user2807517

    creating thumbnail from a video using ffmpeg in php exec() returns 1 but returns 0 if command is 'ffmpeg -h'. i am using ubuntu. A portion of my code is as shown bellow. When i tried $cmd it returned 1 and when i tried $cmd1 it worked.

    $ffmpeg = 'ffmpeg';
    $getFromSecond = 5;
    $videoFile = $_FILES['file']['tmp_name'];
    $size = '105x73';
    $imageFile = 'Newimage.jpg';

    $cmd = "$ffmpeg -an -ss $getFromSecond -i $videoFile -vframes 1 -s $size $imageFile";
    $cmd1 = "$ffmpeg -h";

    works for $cmd1 but not for $cmd, i am thinking it is permission issues

  • avutil/tx : remove deadcode of the control flow

    28 janvier 2022, par Steven Liu
    avutil/tx : remove deadcode of the control flow
    

    Fix CID : 1497864
    The control flow should return ENOSYS if nb_cd_matches is 0 at before
    and the ret equal AVERROR(ENOMEM) or goto end label, so remove the last
    control flow if (ret >= 0) before end label.

    Signed-off-by : Steven Liu <liuqi05@kuaishou.com>

    • [DH] libavutil/tx.c
  • avcodec/iff : Fix bytestream advance

    12 juin 2016, par Michael Niedermayer
    avcodec/iff : Fix bytestream advance
    

    Fixes Ticket5585

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/iff.c