Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (76)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (9195)

  • Revision b72373de79 : make : flatten object file directories Rather than building an object file direc

    31 octobre 2012, par John Koleszar

    Changed Paths : Modify /build/make/Makefile Modify /examples.mk Modify /libs.mk Modify /test/test.mk Modify /vp8/vp8cx.mk Modify /vp9/vp9_common.mk make : flatten object file directories Rather than building an object file directory heirarchy matching the source tree's layout, rename (...)

  • avformat/dash : move reused API to common file and header file

    1er septembre 2017, par Steven Liu
    avformat/dash : move reused API to common file and header file
    

    move from dashenc, move DASHTmplId and dash_fill_tmpl_params to
    dash.c, they will be used by dash demuxer and dash muxer.

    v2 fixed :
    1. rename common file from dashcomm.* to dash.*
    Suggested-by : Hendrik Leppkes <h.leppkes@gmail.com>

    v3 fixed :
    1. rename header file pre defined
    2. add ff_ prefix for the internal API
    Suggested-by : James Almer <jamrial@gmail.com>

    Suggested-by : Timo Rothenpieler <timo@rothenpieler.org>
    Reviewed-by : wm4 <nfxjfg@googlemail.com>
    Signed-off-by : Steven Liu <lq@onvideo.cn>

    • [DH] libavformat/Makefile
    • [DH] libavformat/dash.c
    • [DH] libavformat/dash.h
    • [DH] libavformat/dashenc.c
  • how to name the output file same as input file but different extension after video conversion ? [duplicate]

    4 mars 2018, par kofhearts

    This question already has an answer here :

    I am using this line to batch convert mp4 files to webm files. For all mp4 files i need the output files to be of same name but .webm extension. For example if i have video1.mp4 and video2.mp4 then after conversion i need two files i.e video1.webm and video2.webm. How can i achieve this using bash script ?

    for f in *.mp4; do ffmpeg -i "$f" -c:v libvpx -crf 10 -b:v 1M -c:a libvorbis "$f".webm;  done

    The above code will change the output file to video1.mp4.webm. Thanks !