
Recherche avancée
Autres articles (86)
-
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 (12383)
-
redhat - compile ffmpeg - how to link with liblame/x264 when they're installed locally
23 février 2011, par RaoulI've managed to install ffmpeg, a basic build using
./configure --disable-debug --disable-network --disable-ffserver --disable-ffplay --prefix=/export/home/userid/bin/ffmpeg
Now I've installed liblame and x264 to /export/home/userid/bin and tried to compile ffmpeg as follows :
./configure --disable-debug --disable-network --disable-ffserver --disable-ffplay --prefix=/export/home/userid/bin/ffmpeg --enable-libmp3lame --enable-libx264 --enable-gpl
And I get the error
ERROR: libmp3lame not found
How can I tell configure to look for things in /export/home/bin ?
Thanks
-
How to publish RTSP to RTMP in red5 server
6 février 2014, par Charlie BuntMy RED5 publisher doesn't recognise the network outdoor camera I connected as it is streaming RTSP not flash.
How can it be published ? ffmpeg is for mobile device viewing so is this why it is used and if so how ?
-
How to connect ffmpeg to broadcasted rtsp live camera link feeds to users browser ??? These camera link are dynamic so it cannot be defined initially
9 décembre 2016, par vibhor GuptaThe following rtsp link gives me feed :
rtsp ://user:11111@192...***/MPEG-4ch1/main/avstreamsThe following ffmpeg command helps gets me these feed and i can store it on my server :
ffmpeg -i rtsp ://user:11111@192...***/MPEG-4ch1/main/avstreams -vcodec copy -acodec copy -f mpegts video.mp4But when i use the following command broadcast starts but no streaming is received :
ffmpeg -i rtsp ://user:11111@192...***/MPEG-4ch1/main/avstreams -vcodec copy -acodec copy -f mpegts udp ://127.0.0.1:7000I even checked on the server for 7000 port but nothing is running so i am cannot understand what is going.
To Check I used vlc and in the network stream option i placed udp ://192.168.1.105:7000 as the network url. but it is not working
So friends i would like to know where i am going and if possible what can be a better solution for this problem ??
Thank You