
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (18)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
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 (...) -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)
Sur d’autres sites (5146)
-
Why cant I feed FFServer(Linux) from FFMpeg (Windows) ?
14 mars 2018, par MilenWhat I want to do is to stream a (only)video file from Windows 10 using RTSP. First, I tried to use webm HTTP instead. I found that ffserver is not avaiable for Windows, so I configured and run ffserver on a Linux machine (Ubuntu 16.04). Then, I downloaded pre-built ffmpeg for Windows x64 and run a ffmpeg command to feed my rtsp server. The fact is that the command didnt work on my Windows machine
The same ffmpeg command works well if I run it in my Linux machine.
The details are descripted below :
ffserver.conf file :
HTTPPort 8090
HTTPBindAddress 0.0.0.0
MaxHTTPConnections 2000
MaxClients 1000
MaxBandwidth 10000
CustomLog -
NoDaemon
<feed>
File ./feed1.ffm
FileMaxSize 1G
ACL allow 127.0.0.1 192.168.0.131 #Windows machine IP address
</feed>
<stream>
Feed feed1.ffm
Format webm
# Video settings
VideoCodec libvpx
VideoSize 720x576
VideoFrameRate 25
AVOptionVideo flags +global_header
AVOptionVideo cpu-used 0
AVOptionVideo qmin 10
AVOptionVideo qmax 42
AVOptionVideo quality good
NoAudio
PreRoll 15
StartSendOnKey
VideoBitRate 400
</stream>
<stream>
Format status
ACL allow localhost
ACL allow 192.168.0.0 192.168.255.255
ACL allow 192.168.0.131 # my windows machine ip
</stream>
<redirect>
URL http://www.ffmpeg.org/
</redirect>ffmpeg command to feed server :
ffmpeg -i video.avi http://192.168.0.119:8090/feed1.ffm
Error thrown by Windows command line :
Unable to find a suitable output format for 'http://192.168.0.119:8090/feed1.ffm' .
http://192.168.0.119:8090/feed1.ffm : Invalid argument.Someone told me that Windows newest version of FFMpeg doesnt support ffm, Is that true ? I couldnt find a different format example.
-
Loseless FFMPEG compression that supports windows media player
12 juin 2018, par nmrI am trying to create a movie file (avi, mp4, etc as long as it support windows media player) from a sequence of png files using ffmpeg.I am using C++ "System("ffmpeg command")" to create the movie files once I create the png files (this shouldn’t effect movie creation). I was able to create a .avi file using the following command,
ffmpeg.exe -r 30 -i frame_%7d.png test1.avi
Once you create the file it runs in windows media player but does not run in VLC. I have realized, it does lossy compression and the movie is not that high quality (quality decreases with frame rate). I want to have lossless compression (or no compression at all) but needs to be able to play in windows media player. So I tried the following commands,
ffmpeg.exe -framerate 30 -i frame_%7d.png -codec copy test2.avi
This file ran in VLC but didn’t run in windows media player. Then I tried put in "-pix_fmt yuv420p" but still couldn’t get it to run in windows media player.
ffmpeg.exe -framerate 30 -pix_fmt yuv420p -i frame_%7d.png -codec copy test2.avi
I have also tried using "ffv1" codec and it ran in VLC but not in windows media player
ffmpeg.exe -i frame_%7d.png -c:v ffv1 -qscale:v 0 test4.avi
So, how do I create a lossless movie file from a sequence of png files using ffmpeg that will run in windows media player ?
-
How to install PHP FFMPEG on windows 10 64 Bit
7 septembre 2017, par PlanetHackersI want to install the PHP FFMPEG on my system. My system configuration is :
OS : Windows 10 64 Bit
XAMPP v3.2.2
PHP v7.0.15I found many tutorial but nothing found working. May be due to 64 bit system. I wanted to add a watermark to a video through PHP. That’s why I need the ffmpeg extension. I also tried through Composer but did not get success.