
Recherche avancée
Médias (29)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (68)
-
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 (4972)
-
How to save fluent-ffmpeg output to URL ?
10 avril 2024, par volume oneI am using fluent-ffmpeg to process videos and I want to save the final output file to a remote URL, not on the local server.


Here is the code :


ffmpeg('/path/to/file.mp4')
 .videoCodec(VideoCodec)
 .audioCodec(AudioCodec)
 .format('mp4')
 .output('http://localhost:8080/output.mp4') // This does not work at all
 .output('output.mp4') // this works but saves file locally which I'm not allowed to do
 .run();



How can I save the file directly to a remote location (that is, without saving it locally) ? I know you can stream the output using
pipe
, but I cannot use streams because thenffpmeg
will not set theduration
value of the file.

-
Android - Save image and video to mp4 [duplicate]
8 avril 2017, par BrooksThis question is an exact duplicate of :
I have a surfaceview which my video is played on, I also draw shapes on top of that view/canvas. I want to save/export the canvas and mediaplayer as one mp4 file.
According to this FFMPEG works I will be able to create a mp4 file from images. But in my case I draw to canvas, I can save the canvas as jpg, but I still sit with the problem of how to export/save mp4 and jpg together as one mp4 file.
This link say that I can get the coordinates the image and ’merge’ image and mp4 together with
ffmpeg
.I have been struggling with this for some time, can anyone please point me in the right direction ?
Thank you in advance.
-
Revision 6a2e9ef20a : vpx_codec_decode : check data size When a valid data pointer is given make sure
10 août 2014, par James ZernChanged Paths :
Add /test/decode_api_test.cc
Modify /test/test.mk
Modify /vpx/src/vpx_decoder.c
vpx_codec_decode : check data sizeWhen a valid data pointer is given make sure the size is greater than
zero.
A previous check for vp9 was incorrectly removed in :
7050074 Make the api behavior conform to api spec.No semantics for valid pointers + 0-sized frames are defined for VPx
codecs, so move the check to vpx_codec_decode(). This avoids an assert
in vp9.+ add some basic invalid param testing for decoder init/decode/destroy
Change-Id : I99f9cef6076d15874fd72ac973f2685d8a2353c3