Recherche avancée

Médias (1)

Mot : - Tags -/publier

Autres articles (73)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (11715)

  • How to create multi bit rate dash content using ffmpeg dash muxer

    26 août 2020, par andrii

    ffmpeg documentation says that we can use dash muxer to create dash segments and manifest file with just a single command, like :

    



    ffmpeg -re -i <input /> -map 0 -map 0 -c:a libfdk_aac -c:v libx264&#xA;-b:v:0 800k -b:v:1 300k -s:v:1 320x170 -profile:v:1 baseline&#xA;-profile:v:0 main -bf 1 -keyint_min 120 -g 120 -sc_threshold 0&#xA;-b_strategy 0 -ar:a:1 22050 -use_timeline 1 -use_template 1&#xA;-window_size 5 -adaptation_sets "id=0,streams=v id=1,streams=a"&#xA;-f dash /path/to/out.mpd&#xA;

    &#xA;&#xA;

    Saying I have some HD video file and I want this video to be available through DASH in different bit rates, so that clients can automatically select from the alternatives based on current network conditions. Can all these be done with a single ffmpeg command, like given above ?

    &#xA;&#xA;

    I know there is a solution with using ffmpeg + mp4box, but i'm interested if it could be done with ffmpeg only.

    &#xA;

  • Programmatically capture X11 region with ffmpeg in C/whatever

    26 février 2013, par zw0rk

    There is an input format option to ffmpeg — x11grab which allows one to capture specified region and output it to file/stream. I'm trying to do the same thing programmatically, but i haven't found any non-basic tutorials/reference for ffmpeg API.

    I wonder, how it is possible to open x11 region with avformat_input_file or something like this. Or should i do it with XCopyArea/etc ?

    (Any programming language will satisfy)

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