
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (64)
-
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 (...) -
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...) -
Sélection de projets utilisant MediaSPIP
29 avril 2011, parLes exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
Ferme MediaSPIP @ Infini
L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)
Sur d’autres sites (5346)
-
avcodec/cuviddec : add capability check for maximum macroblock count
3 mai 2019, par Ruta Gadkariavcodec/cuviddec : add capability check for maximum macroblock count
Cuvid supports clips with a limit on maximum number of macroblocks.
This check was missing after cuvidGetDecoderCaps API call allowing
unsupported clips to proceed.
Added the missing check, same as the one in hwaccel nvdec implementation.Signed-off-by : Timo Rothenpieler <timo@rothenpieler.org>
-
av1/h264_metadata, filter_units : Count down when deleting units
17 juin 2019, par Andreas Rheinhardtav1/h264_metadata, filter_units : Count down when deleting units
When testing whether a particular unit should be kept or discarded, it
is best to start at the very last unit of a fragment and count down,
because that way a unit that will eventually be deleted won't be
memmoved during earlier deletions ; and frag/au->nb_units need only be
evaluated once in this case and the counter is automatically correct
when a unit got deleted.It also works for double loops, i.e. when looping over all SEI messages
in all SEI units of an access unit.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-
Concatenating two audio files, keeping the channel count of the second file
6 septembre 2019, par Jon HI am attempting to concatenate two MP3 files into a single MP3 file. So far this has worked fine with the following command :
ffmpeg -y -i "first.mp3" -i "second.mp3" -c:a libmp3lame -qscale:a 1 -filter_complex "[0:0][1:0]concat=n=2:v=0:a=1[outa]" -map "[outa]" combined.mp3
I wish to keep the channel count of the second input. For example, the first input is always mono, but if the second channel is stereo, I wish the output to be stereo. This command appears to always output the same channel count as the first input.
I have tried reversing the order of the inputs, and reversing the mapping of the concat filter, but this had the same result.
Any ideas ? Thanks.