Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (106)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (9057)

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

  • Using FFMPEG : How to do a Scene Change Detection ? with timecode ?

    24 novembre 2016, par Mozart

    Based on this article it seems that it is possible to use FFMPEG to detect scene change in videos :
    http://www.luckydinosaur.com/u/ffmpeg-scene-change-detector

    Now I have a video that displays a book text and when the text (word or sentence) is spoken it gets highlighted.
    Something like this audio book : https://youtu.be/lA7L6ZNVKjc

    I need to know the timestamp when the text gets highlighted (hence scene change), this will allow me to add timestamp tags on my youtube video, so it becomes easier for listeners to navigate through the audiobook.

    What is the magic command line that would do this ?

    Thank you very much !