Recherche avancée

Médias (91)

Autres articles (66)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

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

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

Sur d’autres sites (6056)

  • Revision 4943 : On change les labels du titre + description pour ne pas troubler les gens ...

    7 février 2011, par kent1 — Log

    On change les labels du titre + description pour ne pas troubler les gens ... On ne change le zoom que si on a un point au changement de zoom ... cela évite d’avoir un zoom d’entrée de jeu et donc de devoir le supprimer si on ne souhaite pas mettre de point Un peu d’explications sur les (...)

  • Revision 4943 : On change les labels du titre + description pour ne pas troubler les gens ...

    7 février 2011, par kent1 — Log

    On change les labels du titre + description pour ne pas troubler les gens ... On ne change le zoom que si on a un point au changement de zoom ... cela évite d’avoir un zoom d’entrée de jeu et donc de devoir le supprimer si on ne souhaite pas mettre de point Un peu d’explications sur les (...)

  • How to use libavformat to concat 2 video files with same codec (re-muxing) ?

    5 avril 2018, par Tarhan

    I have downloaded videos from CDN in flv format (video H264 and audio AAC) and remux to them to MP4 format. But videos are limited by length. So i’ve downloaded each video in several parts : started at start point, at point 1, at point 2 (by using seek parameter in url). Each point starts little earlier than ending of previous one.
    Using av_read_frame i scanned all parts and found that intersecting packets not only have same sizes and order but also their dts/pts shifted from each other by constant value. So to concat starting video with video started at point 1 I must do following :
    1. Create output header in output file
    2. Copy all non-intersecting packets from starting video.
    3. Copy all non-intersecting packets from video started at point 1 with changed dts values by shifted it by constant

    How to do all of this using libav (not ffmpeg) ? I read How can libavformat be used without using other libav libraries. But in libav it is not working since there not avformat_alloc_output_context2 in libav. Also source avconv.c source is too complex for newbie like me to isolate parts related to stream copy operations.
    Can someone provide me example to :

    - open input_file1 and input_file2 (only needed if procedure differs from standard in generic tutorials)

    - open and write header for output_file with same container format and same video and audio formats

    - write packets from input_file1 to output_file up to packet with for example pos == XXX

    - write packets from input_file2 to output_file changing their dts (or whatever needed) by constant value

    - write correct trailer

    Calculating of time shift in dts i made before.