Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (63)

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

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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (12242)

  • avformat : Append data in fill_buffer() when possible

    30 juin 2013, par Michael Niedermayer
    avformat : Append data in fill_buffer() when possible
    

    Data is appended in fill_buffer() when there is sufficient space left
    and the data pointer only reset when needed.
    Previously the data pointer was more often reset, loosing more seekback
    space than otherwise needed.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/aviobuf.c
  • How to make video using ffmpeg with multiple photos and audio node.js

    2 juin 2020, par Jechanka

    im trying to make a video using ffmpeg (videoshow.js), at this moment i can make video with many photos but only one audio, i can't use each audio to each image, is it possible ?

    &#xA;&#xA;

    &#xA;var videoshow = require(&#x27;videoshow&#x27;)&#xA;const ffmpegPath = require(&#x27;@ffmpeg-installer/ffmpeg&#x27;).path;&#xA;const ffmpeg = require(&#x27;fluent-ffmpeg&#x27;);&#xA;ffmpeg.setFfmpegPath(ffmpegPath);&#xA;var images = [&#xA;  &#x27;1.jpg&#x27;,&#xA;  &#x27;2.jpg&#x27;,&#xA;]&#xA;&#xA;var videoOptions = {&#xA;  fps: 25,&#xA;  loop: 5, // seconds&#xA;  transition: true,&#xA;  transitionDuration: 1, // seconds&#xA;  videoBitrate: 1024,&#xA;  videoCodec: &#x27;libx264&#x27;,&#xA;  size: &#x27;2000x?&#x27;,&#xA;  audioBitrate: &#x27;128k&#x27;,&#xA;  audioChannels: 11,&#xA;  format: &#x27;mp4&#x27;,&#xA;  pixelFormat: &#x27;yuv720p&#x27;&#xA;}&#xA;&#xA;videoshow([{&#xA;    path: &#x27;1.jpg&#x27;,&#xA;    audio: &#x27;fck-corona&#x27;, // NOT WORKING&#xA;    caption: &#x27;Hello world as video subtitleHello world as video subtitlHello world as video subtitlHello world as video subtitlHello world as video subtitlHello world as video subtitlHello world as video subtitlHello world as video subtitlHello world as video subtitlHello world as video subtitlHello world as video subtitlHello world as video subtitlHello world as video subtitlHello world as video subtitlHello world as video subtitl&#x27;&#xA;  }, {&#xA;    path: &#x27;2.jpg&#x27;,&#xA;    audio: &#x27;audio.mp3&#x27;, // NOT WORKING&#xA;    caption: &#x27;This is a sample subtitle&#x27;,&#xA;    loop: 10 // long caption&#xA;  }])&#xA;  .audio(&#x27;audio.mp3&#x27;) // WOrking but i can use only one audio&#xA;  .save(&#x27;video.mp4&#x27;)&#xA;  .on(&#x27;error&#x27;, function () {})&#xA;  .on(&#x27;end&#x27;, function () {})&#xA;&#xA;&#xA;

    &#xA;

  • FFmpeg can't decode H264 stream/frame data

    31 juillet 2015, par Gediminas

    Recently I had chance to work with two devices that are streaming the H264 through RTSP.
    And I’ve ran into some problem trying to decompress this stream using FFmpeg library.

    Every time the "avcodec_decode_video2" is called - FFmpeg just says something like :

    [h264 @ 00339220] no frame !

    My raw H264 stream I frame data starts like this : "65 88 84 21 3F F8 F8 0D..."
    (as far as I understand this 0x65 indicates that it’s a IDR frame ?)

    Other frames for one device starts like : "41 9A 22 07 F3 4E 48 CC...."

    and for other device - like this : "61 9A 25 C1 1C 45 62 39...."

    • Am I missing some frame data here ?
    • Does FFmpeg needs to have some extra parameters set up ?

    I was expecting at least "00 00 00 01" bytes at the start for the frame data... but this is what I’ve got..