
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (104)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
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 (...)
Sur d’autres sites (7253)
-
movenc : Don’t write any tfdt atom for ismv files
30 octobre 2014, par Martin Storsjömovenc : Don’t write any tfdt atom for ismv files
The tfdt atom shouldn’t be needed in those cases, we already
write tfxd atoms for ismv anyway, which is roughly equivalent.This avoids having to declare the iso6 brand for ismv files.
Signed-off-by : Martin Storsjö <martin@martin.st>
-
movenc : Don’t write any tfdt atom for ismv files
30 octobre 2014, par Martin Storsjömovenc : Don’t write any tfdt atom for ismv files
The tfdt atom shouldn’t be needed in those cases, we already
write tfxd atoms for ismv anyway, which is roughly equivalent.This avoids having to declare the iso6 brand for ismv files.
Signed-off-by : Martin Storsjö <martin@martin.st>
-
how do I write to avlibs AVOptions from C
10 avril 2018, par vinay samuelI want to do the equivalent of the following command line from a C program.
ffmpeg ..... -movflags frag_keyframe
I have narrowed it down to setting some fields in priv_class in AVOutputFormat somehow. But I don’t understand how AVOptions work, I could not find a good example that explains how AVOptions are set and used. I did come across av_opt_set but if I set the name field to "movflags" what is the val and do I set a separate option for frag_keyframe or is it embedded in the flags set for "movflags" ?
Thanks in advance for your time.