
Advanced search
Medias (91)
-
Collections - Formulaire de création rapide
19 February 2013, by
Updated: February 2013
Language: français
Type: Picture
-
Les Miserables
4 June 2012, by
Updated: February 2013
Language: English
Type: Text
-
Ne pas afficher certaines informations : page d’accueil
23 November 2011, by
Updated: November 2011
Language: français
Type: Picture
-
The Great Big Beautiful Tomorrow
28 October 2011, by
Updated: October 2011
Language: English
Type: Text
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 October 2011, by
Updated: October 2011
Language: English
Type: Text
-
Rennes Emotion Map 2010-11
19 October 2011, by
Updated: July 2013
Language: français
Type: Text
Other articles (66)
-
Le profil des utilisateurs
12 April 2011, byChaque 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 (...) -
Configurer la prise en compte des langues
15 November 2010, byAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
XMP PHP
13 May 2011, byDixit 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 (...)
On other websites (5586)
-
ffmpg full album video - multiple audio files one after another
21 August 2019, by MartinI am trying to write an ffmpeg command which will take an image (jpg) and multiple audio files (in this case, lets say 3 mp3 files) and create an mp4 video where each audio file comes one after another (first audio file, then second, then third, etc... no overlap, files play in order one after another).
I am currently using this command to export a single mp3 file and jpg into an mp4:
ffmpeg -loop 1 -y -i "media/pic.jpg" -i "media/01 song name.mp3" -shortest -acodec copy -vcodec mjpeg -s 1920x1080 "outputVideo.mp4"
Is it possible to combine multiple audio tracks into the video using one command?
In the past I was using this command seperately to generate a single audio track made up of multiple audio inputs in order:
ffmpeg -i '01 - Funky Carla.mp3' -i '02 - Take This Day Away.mp3' -i '03 - Youre The One I Love.mp3' -filter_complex '[0:0][1:0][2:0]concat=n=3:v=0:a=1[out]' -map '[out]' -b:a 320k fullAudio.mp3
And then just using that track to export one video, but this process takes two separate ffmpeg commands, is long and slow, and produced a huge video file.
Should I use something like amix / amerge / map? Any advice/ideas is appreciated, thanks.
-
avcodec/pictordec: Optimize picmemset() for single plane full lines
2 August 2019, by Michael Niedermayeravcodec/pictordec: Optimize picmemset() for single plane full lines
Fixes: Timeout (72sec -> 1sec)
Fixes: 15512/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_PICTOR_fuzzer-5663942342344704Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> -
lavc/tiff: Fix edge case with full-length/width tiles
29 August 2019, by Nick Renierislavc/tiff: Fix edge case with full-length/width tiles
When the height is equal to the tile length (full-height tile)
after `height % tile_length` is applied with the current code,
it results in the operating tile_length to be 0. This commit
makes this leftover logic only applies if it's necessary.Signed-off-by: Nick Renieris <velocityra@gmail.com>