Recherche avancée

Médias (1)

Mot : - Tags -/3GS

Autres articles (60)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • MediaSPIP : Modification des droits de création d’objets et de publication définitive

    11 novembre 2010, par

    Par défaut, MediaSPIP permet de créer 5 types d’objets.
    Toujours par défaut les droits de création et de publication définitive de ces objets sont réservés aux administrateurs, mais ils sont bien entendu configurables par les webmestres.
    Ces droits sont ainsi bloqués pour plusieurs raisons : parce que le fait d’autoriser à publier doit être la volonté du webmestre pas de l’ensemble de la plateforme et donc ne pas être un choix par défaut ; parce qu’avoir un compte peut servir à autre choses également, (...)

Sur d’autres sites (11010)

  • PHP ffmpeg - save mp4 as H.264 in Baseline profile

    2 mai 2020, par Pikaboo

    I'm trying to play a mp4 file in android but it's not working.

    



    According to Android VideoView Cannot play video mp4

    



    the file needs to be H.264 in Baseline.

    



    I don't know what the hell this means.

    



    This is the PHP code I'm using to create mp4 :

    



    $videoname = str_replace('.gif', '.mp4', $picname);
$ffmpeg = FFMpeg\FFMpeg::create(array(
    'ffmpeg.binaries'  => 'ffmpeg/bin/ffmpeg.exe',
    'ffprobe.binaries' => 'ffmpeg/bin/ffprobe.exe',
    'timeout'          => 6600, // The timeout for the underlying process
    'ffmpeg.threads'   => 12,   // The number of threads that FFMpeg should use
), $logger);

$video = $ffmpeg->open('memes/' . $folder . '/' . $picname);
$video
    ->save(new \FFMpeg\Format\Video\X264(), 'memes/' . $folder . '/' . $videoname);


    



    How can I set it to be H.264 in Baseline profile ?

    


  • How to save only the error message in a log file ?

    24 septembre 2021, par user12733526

    ffmpeg ... -loglevel +error FFREPORT=file=test.log

    


    ffmpeg ... -FFREPORT=file=test.log:level=verbose

    


    ffmpeg ... FFREPORT=file=test.log:level=error

    


    None of these work.

    


    This works :
ffmpeg ... -loglevel +error -report =file=test.log

    


    But it does save everything in the log file and not only the error message, and the log file created contains a different name.

    


  • Revision f00d157c12 : Moving eob array to the encoder. In the decoder we don't need to save eobs, we

    4 décembre 2013, par Dmitry Kovalev

    Changed Paths :
     Modify /vp9/common/vp9_blockd.h


     Modify /vp9/decoder/vp9_decodeframe.c


     Modify /vp9/decoder/vp9_detokenize.c


     Modify /vp9/decoder/vp9_onyxd_if.c


     Modify /vp9/decoder/vp9_onyxd_int.h


     Modify /vp9/encoder/vp9_block.h


     Modify /vp9/encoder/vp9_encodeframe.c


     Modify /vp9/encoder/vp9_encodemb.c


     Modify /vp9/encoder/vp9_firstpass.c


     Modify /vp9/encoder/vp9_quantize.c


     Modify /vp9/encoder/vp9_rdopt.c


     Modify /vp9/encoder/vp9_tokenize.c


     Modify /vp9/encoder/vp9_tokenize.h



    Moving eob array to the encoder.

    In the decoder we don't need to save eobs, we can pass eob as an argument.
    That's why removing eob arrays from VP9Decompressor and TileWorkerData,
    and moving eob pointer from macroblockd_plane to macroblock_plane.

    Change-Id : I8eb919acc837acfb3abdd8319af63d1bbca8217a