Recherche avancée

Médias (1)

Mot : - Tags -/stallman

Autres articles (42)

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

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

Sur d’autres sites (5168)

  • Revision d35df2d8ea : High-level hooks for Profile 2 (10/12 bit) Adds some high-level hooks for profi

    5 avril 2014, par Deb Mukherjee

    Changed Paths :
     Modify /vp9/common/vp9_enums.h


     Modify /vp9/common/vp9_onyxc_int.h


     Modify /vp9/decoder/vp9_decodeframe.c


     Modify /vp9/encoder/vp9_bitstream.c


     Modify /vp9/encoder/vp9_onyx_if.c


     Modify /vp9/encoder/vp9_onyx_int.h


     Modify /vp9/vp9_cx_iface.c



    High-level hooks for Profile 2 (10/12 bit)

    Adds some high-level hooks for profile 2 before further
    progress on the implementation.

    According to the definitiion in this patch :
    1. Profile 2 only supports 10 or 12 bit color but not 8
    2. Profile 2 supports all color sampling modes : 444, 422 and 420,
    and alpha plane.
    3. Profile 3 is currently undefined.

    Please consider the definition carefully and suggest modifications
    to the definition as needed.

    Change-Id : I5b284fc679e54ac5aee171af72fa7994cfd28995

  • Experiences on building a video recorder for RTSP/RTP streams ?

    3 août 2016, par molokoV

    I have to store continuous video streams from many ip cameras,
    The video is encoded in H.264 and the audio is in AAC or MP3.
    The recorded videos will be played mostly on mobile devices but also on browsers.

    • What would be the best strategy to build a scalable recorder service ?

    • What is the best storage format ? mp4 ?

    • Should i convert the video directly to MP4 ? or is better to store RAW RTP ?

    • Whats the best way to ensure best reliability and less frame loses and avoid lost of sync between audio and video ?

    • I also want to hear similar experiences

    Thanks !

  • what's the theory of mix audio in the ffmpeg

    6 juin 2017, par from_mars

    when I wanted to mix two file into one, I found the toolkit.when I did
    this after following the command, everything was fine,just like :

    ffmpeg -i 1.wav -i 2.wav -filter_complex amix=inputs=2:duration=longest:dropout_transition=2 out.wav

    but there is something I want to know.

    1. what’s the theory of mix audio in the ffmpeg.

      Do you just calculate the average of the input file ?

    2. what’s the dropout_transiton.

      and I found the reference in the website : dropout_transition
      The transition time, in seconds, for volume renormalization when an input stream ends. The default value is 2 seconds.
      .
      but I don’t know what’s the mean.

      if dropout_transiton=0, what would happened ?

    Thanks !(sorry for my poor english)