Recherche avancée

Médias (0)

Mot : - Tags -/api

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

Autres articles (82)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

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

Sur d’autres sites (8038)

  • Look for fastest video encoder with least lag to stream webcam streaming to ipad

    16 novembre 2015, par kelly

    I’m looking for the fastest way to encode a webcam stream that will be viewable in a html5 video tag. I’m using a Pandaboard : http://www.digikey.com/product-highlights/us/en/texas-instruments-pandaboard/686#tabs-2 for the hardware. Can use gstreamer, cvlc, ffmpeg. I’ll be using it to drive a robot, so need the least amount of lag in the video stream. Quality doesn’t have to be great and it doesn’t need audio. Also, this is only for one client so bandwidth isn’t an issue. The best solution so far is using ffmpeg with a mpjpeg gives me around 1 sec delay. Anything better ?

  • avutil/color_utils : Add basic transfer functions for each AVColorTransferCharacteristic

    1er septembre 2015, par Kevin Wheatley
    avutil/color_utils : Add basic transfer functions for each AVColorTransferCharacteristic
    

    Most functions are valid over a domain and range of [0.0-1.0] but
    some are defined over greater. This patch does not deal with
    AVColorRange and assumes AVCOL_RANGE_JPEG for the returned values.

    Signed-off-by : Kevin Wheatley <kevin.j.wheatley@gmail.com>

    • [DH] libavutil/color_utils.c
    • [DH] libavutil/color_utils.h
  • ffmpeg and VFR vs fixed

    1er décembre 2017, par B Davidson

    I was changing some music videos from VFR to 30000/1001 using

    ffmpeg.exe -y -i "C:\Temp\Faith Hill - The Way You Love Me.mp4" -c:v libx264 -crf:v 23 -filter:v fps="fps=30000/1001" -c:a ac3 -b:a 256k -ar 48000 "D:\Faith Hill - The Way You Love Me.mkv"

    Using mediainfo, the file still appeared to be VFR and not the expected 29.97
    ffprobe reported 30000/1001 and MPC reported 29.97.
    I contacted mediainfo and was told it is a bug in ffmpeg, so now I am here.

    Read all about it here - https://sourceforge.net/p/mediainfo/discussion/297609/thread/e0ef2ce9/?limit=25

    Any thoughts on the chance of a bug in ffmpeg ??