Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (49)

  • 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

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

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

Sur d’autres sites (6701)

  • avformat/mxfdec : fixed jp2k_rsiz and 170M matrix

    6 juin 2021, par Valerii Zapodovnikov
    avformat/mxfdec : fixed jp2k_rsiz and 170M matrix
    

    Again. 240M matrix is different from BT.601 ! And 170M is the same
    as BT.601. It is primaries that are the same in 240M and 170M, as
    for jp2k_rsiz see page 17 of ST 422:2019. IT WAS THERE since 2006.
    This wrong jp2k_rsiz is a copy-paste of header_open_partition_key.

    • [DH] libavformat/mxf.c
    • [DH] libavformat/mxfdec.c
  • avfilter/vf_fps : extend support for expressions

    24 février 2021, par James Almer
    avfilter/vf_fps : extend support for expressions
    

    AV_OPT_TYPE_VIDEO_RATE AVOption types are parsed as expressions, but in a
    limited way. For example, name constants can only be parsed alone and not as
    part of a longer expression.

    This change allows usage like

    ffmpeg -i IN -vf fps="if(eq(source_fps\,film)\,ntsc_film\,source_fps)" OUT

    Suggested-by : ffmpeg@fb.com
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavfilter/vf_fps.c
  • Large Video file Conversion using ffmpeg

    12 mai 2021, par Varsha

    I am using ffmpeg tool to convert videos from wmv to mp4 formats using the following code -

    &#xA;

            string outputPath = args[1].ToString();&#xA;        string[] files = Directory.GetFiles(inputPath);               &#xA;        Console.WriteLine(files.Length);&#xA;        foreach (var item in files)&#xA;        {&#xA;            itemBkp = item;                                       &#xA;            Process proc = new Process();&#xA;            proc.StartInfo.FileName = @"e:\test\ffmpeg.exe";                   &#xA;            string filename= Path.GetFileName(item);                    &#xA;            proc.StartInfo.Arguments=  " -i "  &#x2B; item &#x2B; " " &#x2B; outputPath &#x2B; filename.Split(&#x27;.&#x27;)[0] &#x2B; ".mp4";&#xA;            proc.StartInfo.UseShellExecute = false;&#xA;            proc.StartInfo.RedirectStandardInput = true;&#xA;            proc.StartInfo.RedirectStandardOutput = true;&#xA;            proc.Start();&#xA;            proc.WaitForExit();&#xA;        }&#xA;

    &#xA;

    It works fine for videos up to 20mb but when i try for videos above 70mb it throws following error -

    &#xA;

    FFmpeg version SVN-r6179, Copyright (c) 2000-2004 Fabrice Bellard configuration : —extra-cflags=-I/static/include —extra-ldflags=-L/static/lib —enable-memalign-hack —enable-mp3lame —enable-xvid —enable-a52 —enable-libogg —enable-vorbis —enable-faac —enable-faad —enable-x264 —enable-pp —enable-amr_wb —enable-amr_nb —enable-avisynth —enable-gpl libavutil version : 49.0.0 libavcodec version : 51.13.0 libavformat version : 50.5.0 built on Sep 5 2006 22:41:30, gcc : 3.4.5 (mingw special) E :\videos\Playful : I/O error occured Usually that means that input file is truncated and/or corrupted.

    &#xA;

    Is there a limit on video size to be converted ?

    &#xA;