Recherche avancée

Médias (91)

Autres articles (97)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

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

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

Sur d’autres sites (5287)

  • avformat/movenc : add ICC profile support to colr atom

    23 septembre 2019, par vectronic
    avformat/movenc : add ICC profile support to colr atom
    

    If 'write_colr' movflag is set, then movflag 'prefer_icc' can
    be used to first look for an AV_PKT_DATA_ICC_PROFILE entry to
    encode.

    If ICC profile doesn't exist, default behaviour enabled by
    'write_colr' occurs.

    Signed-off-by : vectronic <hello.vectronic@gmail.com>

    • [DH] libavformat/movenc.c
    • [DH] libavformat/movenc.h
  • What does profile means in an aac encoded audio

    22 avril 2020, par Ananta Prodhan

    I am trying to concat two video files with ffmpeg concat demuxer for most of the part it works just fine !&#xA;But when I try to concat videos which has two different audio profile with same codec, it concats with the resulting video having weird sound problem. And when re-encoding the resulting video it will spit out a lots of error related to audio.

    &#xA;&#xA;

    Here is ffprobe output for some audio stream from different video files&#xA;Video 1

    &#xA;&#xA;

    [STREAM]&#xA;index=1&#xA;codec_name=aac&#xA;codec_long_name=unknown&#xA;profile=4&#xA;codec_type=audio&#xA;codec_time_base=1/48000&#xA;codec_tag_string=[0][0][0][0]&#xA;codec_tag=0x0000&#xA;sample_fmt=fltp&#xA;...&#xA;[/STREAM]&#xA;

    &#xA;&#xA;

    Video 2

    &#xA;&#xA;

    [STREAM]&#xA;index=1&#xA;codec_name=aac&#xA;codec_long_name=unknown&#xA;profile=1&#xA;codec_type=audio&#xA;codec_time_base=1/48000&#xA;codec_tag_string=[0][0][0][0]&#xA;codec_tag=0x0000&#xA;sample_fmt=fltp&#xA;...&#xA;[/STREAM]&#xA;

    &#xA;&#xA;

    Video 3

    &#xA;&#xA;

    [STREAM]&#xA;index=1&#xA;codec_name=aac&#xA;codec_long_name=unknown&#xA;profile=28&#xA;codec_type=audio&#xA;codec_time_base=1/48000&#xA;codec_tag_string=[0][0][0][0]&#xA;codec_tag=0x0000&#xA;sample_fmt=fltp&#xA;...&#xA;[/STREAM]&#xA;

    &#xA;&#xA;

    Look the different profile= values.I was able to reproduce 28 and 1 but was failed for 4

    &#xA;&#xA;

    28 = he_aac_v2 1 = ffmpeg default

    &#xA;&#xA;

    So what I want to know the most is, &#xA;What does these different values mean for aac ? &#xA;And how to reproduce them with any aac encode ?

    &#xA;

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

    &#xA;&#xA;

    According to Android VideoView Cannot play video mp4

    &#xA;&#xA;

    the file needs to be H.264 in Baseline.

    &#xA;&#xA;

    I don't know what the hell this means.

    &#xA;&#xA;

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

    &#xA;&#xA;

    $videoname = str_replace(&#x27;.gif&#x27;, &#x27;.mp4&#x27;, $picname);&#xA;$ffmpeg = FFMpeg\FFMpeg::create(array(&#xA;    &#x27;ffmpeg.binaries&#x27;  => &#x27;ffmpeg/bin/ffmpeg.exe&#x27;,&#xA;    &#x27;ffprobe.binaries&#x27; => &#x27;ffmpeg/bin/ffprobe.exe&#x27;,&#xA;    &#x27;timeout&#x27;          => 6600, // The timeout for the underlying process&#xA;    &#x27;ffmpeg.threads&#x27;   => 12,   // The number of threads that FFMpeg should use&#xA;), $logger);&#xA;&#xA;$video = $ffmpeg->open(&#x27;memes/&#x27; . $folder . &#x27;/&#x27; . $picname);&#xA;$video&#xA;    ->save(new \FFMpeg\Format\Video\X264(), &#x27;memes/&#x27; . $folder . &#x27;/&#x27; . $videoname);&#xA;

    &#xA;&#xA;

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

    &#xA;