
Recherche avancée
Autres articles (66)
-
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 (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccé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 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 (...)
Sur d’autres sites (9073)
-
How can I generate a video file directly from an FFmpeg filter with no actual input file ?
26 août 2016, par blahdiblahFFmpeg has a number of video generating filters, listed in the documentation as "video sources" :
- cellauto
- color
- mptestsrc
- fei0r_src
- life
- nullsrc, rgbtestsrc, testsrc
Those are great for using with other filters like overlay, but is there any way that I can generate a movie consisting of just one of those video sources without any input video ?
Something like :
ffmpeg -vf color=red" red_movie.mp4
Except that that errors out with
At least one input file must be specified
. -
Making screenshots in FFmpeg : How to deal with differing actual width vs displayed width ? [duplicate]
15 mars 2020, par browncatmegazordI usually have no problem making gifs and screenshots from a video with FFmpeg using standard commands like so :
ffmpeg -i input -frames:v 1 -q:v 2 output.jpeg
Recently I had to deal with an .mkv file that had a pixel width of 720, but a "display width" of 853 (Apparently this non-square pixel stuff is a thing), and my usual commands would give me a 720x480 screenshot that is oddly squashed.
I managed to force its size by adding a -s 853x480 into the above command, but it looks a little bit stretched, and I suspect there’s a cleaner way to do this without me having to manually check what the displayed width is.
Would appreciate some insight about this !
-
can hls play fragment mp4 formed by rtp data
26 mai 2017, par hui zhangI have a rtp stream, and I record it to several fragment mp4(fmp4) files divide by I-Frame.
(I first record it as mp4, and set the right pts. then use ffmpeg transform it to fragment to fmp4 )ffmpeg -re -i infile.ext
-f mp4 -movflags frag_keyframe+empty_moov output.mp4)I want to play these fmp4 in hls, I set the m3u8 file manually.
And try to play, browser get the fmp4 file successfully. But not able to played on browser.
I don’t know where is wrong ?
Could any one help me ?