
Recherche avancée
Médias (91)
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (66)
-
Contribute to a better visual interface
13 avril 2011MediaSPIP 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, parLes 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 2011Contrairement à 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 — LogOn 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 — LogOn 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 TarhanI 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.
Usingav_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 constantHow 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 notavformat_alloc_output_context2
inlibav
. Also sourceavconv.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.