Recherche avancée

Médias (1)

Mot : - Tags -/remix

Autres articles (50)

  • 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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (7513)

  • avformat : add format_probesize to allow tuning the maximum amount of bytes to identif...

    27 janvier 2014, par Michael Niedermayer
    avformat : add format_probesize to allow tuning the maximum amount of bytes to identify the filetype
    

    Currently probesize is cliped at 1mb before being used for format detection.
    Alternatively this cliping could be removed but this would then tie various
    things like stream analysis to the file detection.

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

    • [DH] libavformat/avformat.h
    • [DH] libavformat/options_table.h
    • [DH] libavformat/utils.c
  • Rendering video by ffmpeg.wasm in browser occured an error

    15 septembre 2022, par James Bor

    When a local video renderer uses the ffmpeg.wasm library in the Chrome browser, very often an error with the SBOX_FATAL_MEMORY_EXCEEDED code occurs during the rendering process. The standard command set is used. The code below is half fake because it is very long, but describes an approximate action algorithm. Computer performance and RAM capacity do not affect the video, files used - minimal size. Has anyone experienced this and how can we solve it ?&#xA;Error screen

    &#xA;

    const videoGenerate = async (project) => {&#xA;  const ffmpeg = createFFmpeg({&#xA;      corePath: &#x27;ffmpeg/ffmpeg-core.js&#x27;,&#xA;      workerPath: &#x27;ffmpeg/ffmpeg-core.worker.js&#x27;&#xA;  });&#xA;  await loadFfmpeg(ffmpeg);&#xA;  project.projectName = "Default";&#xA;  project.fileType = "video/mp4";&#xA;&#xA;  const resultVideo = {&#xA;    title: `${project.projectName}ConcatenatedVideo.mp4`,&#xA;  };&#xA;  // *For fetchFile method and ffmpeg.FS(&#x27;writeFile&#x27;, title, file);&#xA;  await uploadObjects(project.projectName, ffmpeg);&#xA;  // *&#xA;  const command = [&#x27;-i&#x27;, project.video, resultVideo.title];&#xA;  await ffmpeg.run(...command);&#xA;  await ffmpeg.FS("unlink", resultVideo.title);&#xA;  resultVideo["blob"] = ffmpeg.FS(&#x27;readFile&#x27;, title);&#xA;  return resultVideo.blob;&#xA;};&#xA;

    &#xA;

    These dependencies are used : "@ffmpeg/core" : " 0.8.5", "@ffmpeg/ffmpeg" : " 0.9.7". Upgrading the library to the latest version does not work either.

    &#xA;

  • How can I concatenate 2 videos with audio using ffmpeg ? [duplicate]

    8 juin 2020, par Easy Tricks For Android

    I tried this command :

    &#xA;&#xA;

    ffmpeg -f concat -i mylist.txt -c copy output.mp4&#xA;

    &#xA;&#xA;

    But output.mp4 has no audio.

    &#xA;&#xA;

    mylist.txt contains :

    &#xA;&#xA;

    file &#x27;1.mp4&#x27;&#xA;file &#x27;2.mp4&#x27;&#xA;

    &#xA;&#xA;

    Information about 1.mp4 and 2.mp4 :

    &#xA;&#xA;

    C:\Users\Admin\OneDrive\Desktop\New folder>ffmpeg -n -i 1.mp4 -i 2.mp4&#xA;ffmpeg version git-2020-05-23-26b4509 Copyright (c) 2000-2020 the FFmpeg developers&#xA;  built with gcc 9.3.1 (GCC) 20200523&#xA;  configuration: --enable-gpl --enable-version3 --enable-sdl2 --enable-fontconfig --enable-gnutls --enable-iconv --enable-libass --enable-libdav1d --enable-libbluray --enable-libfreetype --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libsrt --enable-libtheora --enable-libtwolame --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxml2 --enable-libzimg --enable-lzma --enable-zlib --enable-gmp --enable-libvidstab --enable-libvmaf --enable-libvorbis --enable-libvo-amrwbenc --enable-libmysofa --enable-libspeex --enable-libxvid --enable-libaom --disable-w32threads --enable-libmfx --enable-ffnvcodec --enable-cuda-llvm --enable-cuvid --enable-d3d11va --enable-nvenc --enable-nvdec --enable-dxva2 --enable-avisynth --enable-libopenmpt --enable-amf&#xA;  libavutil      56. 48.100 / 56. 48.100&#xA;  libavcodec     58. 87.101 / 58. 87.101&#xA;  libavformat    58. 43.100 / 58. 43.100&#xA;  libavdevice    58.  9.103 / 58.  9.103&#xA;  libavfilter     7. 83.100 /  7. 83.100&#xA;  libswscale      5.  6.101 /  5.  6.101&#xA;  libswresample   3.  6.100 /  3.  6.100&#xA;  libpostproc    55.  6.100 / 55.  6.100&#xA;Input #0, mov,mp4,m4a,3gp,3g2,mj2, from &#x27;1.mp4&#x27;:&#xA;  Metadata:&#xA;    major_brand     : mp42&#xA;    minor_version   : 0&#xA;    compatible_brands: mp41isom&#xA;    creation_time   : 2020-05-31T08:12:56.000000Z&#xA;  Duration: 00:00:05.93, start: 0.000000, bitrate: 186 kb/s&#xA;    Stream #0:0(und): Video: h264 (Main) (avc1 / 0x31637661), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], 184 kb/s, 30 fps, 30 tbr, 30k tbn, 60 tbc (default)&#xA;    Metadata:&#xA;      creation_time   : 2020-05-31T08:21:56.000000Z&#xA;      handler_name    : VideoHandler&#xA;      encoder         : AVC Coding&#xA;Input #1, mov,mp4,m4a,3gp,3g2,mj2, from &#x27;2.mp4&#x27;:&#xA;  Metadata:&#xA;    major_brand     : mp42&#xA;    minor_version   : 0&#xA;    compatible_brands: mp41isom&#xA;    creation_time   : 2020-06-01T03:32:58.000000Z&#xA;  Duration: 00:00:12.23, start: 0.000000, bitrate: 1909 kb/s&#xA;    Stream #1:0(und): Video: h264 (Main) (avc1 / 0x31637661), yuv420p, 1920x1080 [SAR 1:1 DAR 16:9], 1708 kb/s, 30 fps, 30 tbr, 30k tbn, 60 tbc (default)&#xA;    Metadata:&#xA;      creation_time   : 2020-06-01T04:17:17.000000Z&#xA;      handler_name    : VideoHandler&#xA;      encoder         : AVC Coding&#xA;    Stream #1:1(und): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 196 kb/s (default)&#xA;    Metadata:&#xA;      creation_time   : 2020-06-01T04:17:17.000000Z&#xA;      handler_name    : SoundHandler&#xA;At least one output file must be specified&#xA;

    &#xA;