Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

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

Autres articles (22)

  • 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

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

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (6901)

  • avcodec/hevc, h2645_parse : Fix HEVC NAL unit names and constants

    18 mars 2020, par Andreas Rheinhardt
    avcodec/hevc, h2645_parse : Fix HEVC NAL unit names and constants
    

    This commit fixes the names and constants of the reserved NAL units
    with nal_unit_type 22 resp. 23. They were "IRAP_IRAP_VLC2x", but are
    actually "RSV_IRAP_VLC2x".

    This also required a change to cbs_h265_syntax_template.c.

    Reviewed-by : Anton Khirnov <anton@khirnov.net>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/cbs_h265_syntax_template.c
    • [DH] libavcodec/h2645_parse.c
    • [DH] libavcodec/hevc.h
  • ffmpeg converting PCM data file to wav file getting distorted(noisy) data

    3 janvier 2015, par Mahendra

    I have raw pcm data in following form :

    0000 0000 0000 0000 0000 0000 0000 0000
    0000 0000 0000 0000 0000 0000 0000 0000
    0000 0000 0000 0000 0000 0000 0000 0000
    0000 0000 0000 0000 0000 0000 0000 0100
    0000 0000 0000 0000 0000 0000 0000 0000
    0000 0100 0100 0000 0000 efbf bdef bfbd
    0000 efbf bdef bfbd efbf bdef bfbd efbf
    bdef bfbd efbf bdef bfbd efbf bdef bfbd
    efbf bdef bfbd efbf bdef bfbd 0000 efbf
    bdef bfbd 0000 efbf bdef bfbd efbf bdef
    bfbd 2900 efbf bdef bfbd 0000 efbf bdef
    bfbd efbf bdef bfbd efbf bdef bfbd 0000

    and I want to make this data in wav file when I am converting by ffmpeg getting noisy data by this command :

    sox -V -t raw -b 16 -e signed -r 16000 -c 1 14_32_7_187.pcm  new.wav

    and :

    ffmpeg -f s16le -ar 16000 -ac 1 -i 14_32_7_187.pcm -ar 16000 -ac 1 oout.wav

    using both getting noisy data.

  • flvdec : do not create any streams in read_header()

    11 octobre 2015, par Anton Khirnov
    flvdec : do not create any streams in read_header()
    

    The current muxer behaviour is to create streams in read_header() based
    on the audio/video presence flags, but fill in the stream parameters
    later when we actually get some packets for them. This is rather shady,
    since other demuxers set the stream parameters immediately when the
    stream is created and do not touch the stream codec context after that.

    Change the flv demuxer to behave in the same way as other similar
    demuxers — create the streams only when we get a packet for them.

    • [DBH] libavformat/flvdec.c