Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (40)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

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

  • Confirm HLS server is working only with Windows PC

    29 novembre 2013, par user2357117

    I'm going to set up HTTP Live Streaming server.
    In development environment, only Windows PC is available for the server's client due to network restriction and other regulations.

    How can I confirm that

    • server is publishing HLS movie and
    • real-time movie's delay by viewing it

    only with Windows software ?

    This page shows that browser available on Windows does not support HLS.
    I'm prefer solution with free software, so JW Player may not be a best solution.

    I'm not sure that I can check delay on-the-fly with hls-client or ffmpeg.

  • How to run script on Windows to get the files from the current directory ?

    8 juillet 2015, par pcroland

    For example I have directory on the Desktop called "encode". It contains a video file and a script. And I want that the script get the files from the folder where the script is.

    for %%a in ("*.mkv") do C:\encode\ffmpeg.exe -i "%%a" -c:a ac3 -b:a 192k "encode\%%~na.ac3"
    pause

    How should I do that ?

  • ffmpeg Frames to mp4 (Windows)

    8 juillet 2015, par Somax

    I am trying to combine my frames to a video now for like an hour and I have huge problems with ffmpeg. It keeps on telling me that the directory doesnt exist and i have no idea how to make it right...

    ffmpeg is in C :/ffmpeg
    the frames are in C/ffmpeg/render
    they are named : output_0001.png to output_0150.png

    I want to have 24 Frames per secound.
    what do i have to do in the cmd ?

    i tryed like "ffmpeg -r 30 -i c :/ffmpeg/render/output_%24.png video.mp4"

    What am i doing wrong ?