Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (29)

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

  • 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

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

  • Merge commit ’019d3fccc4dcf5c8379112f697ce9eb08edee9b9’

    13 août 2014, par Michael Niedermayer
    Merge commit ’019d3fccc4dcf5c8379112f697ce9eb08edee9b9’
    

    * commit ’019d3fccc4dcf5c8379112f697ce9eb08edee9b9’ :
    Set protocol-level metadata in AVFormatContext any time a packet is read.

    Conflicts :
    libavformat/utils.c

    Merged-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/utils.c
  • avformat/dashenc : change the hls version from 6 to 7

    20 avril 2018, par Steven Liu
    avformat/dashenc : change the hls version from 6 to 7
    

    reference hls support fmp4 file from draft-pantos-http-live-streaming-20
    the spec describes version 7 of hls protocol

    Suggested-by : Ronak <ronak2121@yahoo.com>
    Signed-off-by : Steven Liu <lq@chinaffmpeg.org>

    • [DH] libavformat/dashenc.c
  • ffmpeg merge 2 videos missing audio

    30 janvier 2016, par Liao

    I followed the wiki

    $ffmpeg_bin -i part1_1.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts intermediate1.ts
    $ffmpeg_bin -i part1_2.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts intermediate2.ts
    $ffmpeg_bin -i "concat:intermediate1.ts|intermediate2.ts" -c copy -bsf:a aac_adtstoasc result.mp4

    the origin part1_1.mp4 has no audio, part1_2.mp4 does

    But the result.mp4 has no audio.

    When I change part1_1.mp4 to a video which has audio, then result.mp4 got audio

    Why ?