
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (74)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (12565)
-
play MPD file of mpeg-dash on android and IOS
9 janvier 2019, par user3223551I have used ffmpeg to create a MPD file for my video, and I could play and watch it on my pc using :http://dashplayer.azurewebsites.net/
now I want to make sure it works and plays appropriately on andoid and IOS, could anyone tell me how to test this file on android and IOS ?
-
How to install frei0r on FFmepg ?
26 octobre 2018, par La-CatSorry for the stupid question, I need some help with installing frei0r with FFmpeg.
I have already installed FFmpeg by this tutorial :
Tutorial for installing FFmepgWhen I’m trying to add the frei0r plugin, nothing works.
I have tried to use this thread and frei0r’s website.Thanks :)
-
fps is too low when ffmpeg grab video
6 avril 2014, par zhangyp007I use ffmpeg with the following options :
ffmpeg -f video4linux2 -s 640x480 -r 25 -i /dev/video0 http://localhost:8090/feed1.ffm
All I want to do is to watch the web live video in my chrome browser. This is relevant part in my ffserver.conf file :
<stream> # Output stream URL definition
Feed feed1.ffm # Feed from which to receive video
Format webm
NoAudio
#Audio settings
#AudioCodec vorbis
#AudioBitRate 64 # Audio bitrate
# Video settings
VideoCodec libvpx
VideoSize 720*576 # Video resolution
VideoFrameRate 25 # Video FPS
AVOptionVideo flags +global_header # Parameters passed to encoder
# (same as ffmpeg command-line parameters)
AVOptionVideo cpu-used 0
AVOptionVideo qmin 10
AVOptionVideo qmax 42
AVOptionVideo quality good
AVOptionAudio flags +global_header
PreRoll 15
StartSendOnKey
VideoBitRate 400 # Video bitrate
</stream>When I open chrome to the following location :
http://localhost:8090/test.webm
I can successfully watch the live video, but due to a low fps, I just doesn't produce a fluent video. I found out that the fps is only around 6. Sometimes it goes up to around 10 or 15. When that is the case, the becomes video a bit more fluent.
I have set the fps to 25, so I wonder why it actually gets to the low fps reate.