Recherche avancée

Médias (1)

Mot : - Tags -/wave

Autres articles (61)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

Sur d’autres sites (6367)

  • rtmp : Send video on a separate channel.

    16 septembre 2013, par Josh Allmann
    rtmp : Send video on a separate channel.
    

    Sending non-monotonic packets (e.g. when the audio and video
    streams are monotonic within themselves but not muxed
    monotonically) will lead to negative values the RTMP timestamp
    field (where timestamps are transmitted only as deltas for each
    channel), and this delta can end up being incorrectly written as
    a large unsigned number.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/rtmpproto.c
  • aarch64 : Manually tweak vertical alignment/indentation in tx_float_neon.S

    17 octobre 2023, par Martin Storsjö
    aarch64 : Manually tweak vertical alignment/indentation in tx_float_neon.S
    

    Favour left aligned columns over right aligned columns.

    In principle either style should be ok, but some of the cases
    easily lead to incorrect indentation in the surrounding code (see
    a couple of cases fixed up in the preceding patch), and show up in
    automatic indentation correction attempts.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavutil/aarch64/tx_float_neon.S
  • issue in converting a stream of images that is jittery and lossy into a video (using ffmpeg or otherwise)

    17 mars 2019, par ksridhar

    i have a program that is the source for png images that are sent out on its stdout. this program is prone to lose images as well have jitter (not deliver them on time precisely i.e. 25 frames/sec).

    i tried the following with ffmpeg

    image_streamer.sh | ffmpeg -vcodec png -i - -vf fps=25 -vcodec libx264 -y foo.mp4.

    it was noticed that (a) when the input rate was wavering around 25 frames/sec with no drops the mp4 file was created fine but when (b) there were drops by the image_streamer.sh the fps filter did not duplicate images. i understand that there is no pts information in this case.

    i read several questions/answers around this issue but there we related to files and not a pipe.

    There was also a thread of conversation a long time back (https://ffmpeg.org/pipermail/ffmpeg-user/2012-December/011855.html) but it lead to a dead end.

    i am quite naive to ffmpeg. i hope that this question is not something really stupid.