Recherche avancée

Médias (0)

Mot : - Tags -/page unique

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

Autres articles (35)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

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

  • Possible to dynamically switch input streams in ffserver ?

    4 octobre 2016, par dr.doom

    I am interested in having multiple alternative input streams to an ffserver that each will get activated upon command on predefined time intervals.

    Imagine a scenario where the client wants to stream feeds from a security camera for 10 seconds and then switch to another security camera.

    Is this functionality possible with ffserver and ffmpeg ?

  • Mapping streams by language in FFmpeg

    8 décembre 2016, par ffmpeg123

    I have lots of files with multiple audio and subtitle languages, however the track numbers aren’t consistent (the English audio stream isn’t always the first) so using a command such as :

    ffmpeg -i "input.mkv" -map 0 -map -0:a:1 -c:v copy -c:a copy "output.mkv"

    doesn’t yield expected results. After searching around I discovered it was possible to map streams based on language with this command :

    ffmpeg -i "input.mkv" -map 0 -map -0:m:language:eng -c:v copy -c:a copy "output.mkv"

    However -map -0:m:language:eng will remove all tracks with the English language flag. To keep the subtitle tracks you can use -map 0:s this is a good solution however, I want to know if it’s possible to only map audio streams based on language.

  • ffmpeg : allow disabling streams by type for inputs

    29 décembre 2018, par Gyan Doshi
    ffmpeg : allow disabling streams by type for inputs
    

    - vn/-an/-sn/-dn now works for input. Streams are still registered in
    input_streams but they can't be automatically selected or mapped or
    filtered.

    • [DH] fftools/ffmpeg_opt.c