
Recherche avancée
Médias (2)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (74)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe lecteur ne fonctionne pas sur Internet Explorer
Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (5664)
-
FFmpeg on Xcode
4 octobre 2013, par user2741735I'm developing an app for ios which uses IP Camera to stream live videos to the user. I installed macports and ffmpeg using terminal on my mac. I have taken the IP Camera output and converted into .ts file using ffmpeg on terminal. Now I want the procedure to do the same using Xcode i.e. writing code in xcode to convert IP Camera output to .ts files.
Thanks in advance. -
Run FFMPEG mimized/hidden using python subprocess [duplicate]
2 septembre 2020, par IdanqSo I'm running the following command :


subprocess.call(["ffmpeg", "-i", "test1.mp4", "test1.mp3"], shell=False)



But when I run it as an .pyw (which does not launch a controlling terminal), it opens a terminal for the FFMPEG, is there a way to make it hidden or even minimized ?


Thanks for any help !


-
FFmpeg error count in C/C++
22 mai 2018, par daveIn my C/C++ application I need to count decoding errors. I’m not familiar with ffmpeg library. Is there any way to do it without grabbing errors from terminal ? For example in terminal I got
[h264 @ 008df020] error while decoding MB 34 0, bytestream 3152
Any ideas ? Thanks in advance.