Recherche avancée

Médias (91)

Autres articles (64)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • 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

Sur d’autres sites (14883)

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