Recherche avancée

Médias (0)

Mot : - Tags -/api

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (33)

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

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (4724)

  • Unsplitting two video files with ffmpeg [duplicate]

    2 septembre 2016, par exebook

    This question is an exact duplicate of :

    I cannot find a better word for this, because I searched for "combine", "join", "merge", "concat" and each time I get the information on how to get two videos into one so that the resulting file will play first video and then continues to the second one. I, on the other hand, need them to play simultaneously in the resulting video, so that first file goes to the left, and the second one to the right. It is a video chat recording of two person web cameras that need to get into one file to play at once. How to do that with ffmpeg ?

  • Tips for encoding a live stream to IIS Media Services (or Azure Live Media Services) with FFMPEG ?

    6 mars 2014, par user3104748

    We're trying to encode assets, either live or static, in a live stream to IIS Media Services using ffmpeg. Can anyone provide pointers for exactly what kinds of parameters we should be using and setting ?

    As part of our test, just to see if we can get things to work, we have a standard plain-old MP4 video static asset that we're trying to stream to the server. It seems to work on the client side, but when we try to view the video on the receiving end, we get nothing.

    Here's an example of the command we're using, where gg.mp4 is the static MP4 video (obviously (hostname) is the name of our host and not the actual word in parenthesis :)...

    ffmpeg -y -re -i gg.mp4 -movflags isml+frag_keyframe -f ismv -threads 0 -c:a libvo_aacenc -ac 2 -b:a 64k -c:v libx264 -preset fast -profile:v baseline -g 48 -keyint_min 48 -map 0:v -b:v:0 477k -s:v:0 368x152 -map 0:v -b:v:1 331k -s:v:1 288x120 -map 0:v -b:v:2 230k -s:v:2 224x92 -map 0:a:0 http://(hostname)/ingest.isml/Streams(video)
  • How to use ffmpeg with h.265 (or h.264) coded ?

    8 mai 2015, par randomuser1

    Normally I start recording the camera image with the command :

    ffmpeg -y -f vfwcap -r 25 -i 0 OUT.mp4

    but I’m not sure which coded do I use in here (I’m just beginning my adventure with ffmpeg), however I found on this webpage this command :

    ffmpeg -i INPUT -c:a copy -x265-params crf=25 OUT.mov

    But when I run it - I get the following error :
    INPUT: No such file or directory"

    I changed the INPUT word above also to 0, so the command is

    ffmpeg -i 0 -c:a copy -x265-params crf=25 OUT.mov,
    but error stays similar (0: no such file or directory).
    How can I grab the camera image and save it to a file while using the H.265 ?