
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (67)
-
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 (5041)
-
How do I use piping with ffmpeg ?
25 janvier 2016, par DiglettPotatoMy goal is to use wget to download an flv file, and pipe the output to ffmpeg to convert it to an MP3. This way the user can download the MP3 without waiting for the FLV to download to my server first. I’ve been playing around with it, and it seems that ffmpeg can only do piping on raw video. So I was working with something like this :
wget -O - 'videoinput.flv' | ffmpeg -y -i - -vcodec rawvideo -f yuv4mpegpipe - | ffmpeg -y -i - -ab 128k audiooutput.mp3
Anybody have experience with this type of on-the-fly ffmpeg encoding process ?
-
OpenCV saving a video, or saving images and using ffmpeg
23 mars 2020, par rjyarwoodI am currently taking in thermal data given to me and trying to save a video from elapsed time. I am using Python and OpenCV. My problem currently is I cannot find a way to save this video without sacrificing a lot of resolution. Currently I am saving each frame as a png in a directory and then trying to use ffmpeg to build a video after but the video looks like it was smudged. I also tried using a video writer in the script but that was even worse. Has anyone had this experience that may be able to help ? It would be very much appreciated
-
Could there be an unexpected collision of MS VC runtimes ?
25 mai 2016, par sharpenerI have learned the hard way, it’s not very good to share heap pointers between two dlls who each depends on different MS VC runtime. Fair enough. Based on this experience and current weird behavior of a program chain being debugged I would like to ask a
Question :
Could
lib1.dll
using one runtime (eg.msvcrt.dll
) possibly damage heap oflib2.dll
using different runtime (eg.vcruntime140d.dll
) ? No pointers shared, just pairs of malloc/free on the same runtime.Background : (for those who would ask for it)
- I have standard zeranoe ffmpeg libraries dependent on
msvcrt.dll
. - I created small C dll covering required functionality based on those ffmpeg libs, let’s call it
libvideo.dll
. It’s dependent on VS2015 runtime. - I created
libvideosharp.dll
a managed C# wrapper library (also VS2015) forlibvideo.dll
(marshalling). - I created C# test app using the
libvideosharp.dll
(also VS2015). - Debugging the C# test app (and associated libraries in the chain) I experience following :
libvideo.dll
mallocs and inits a data structure.libvideo.dll
calls some ffmpeg init routines (av_register_all, avformat_network_init) which might malloc on its own runtime.libvideo.dll
’s data structure is corrupted (not even passed to ffmpeg libs in any way, just independent malloced block).
- I have standard zeranoe ffmpeg libraries dependent on