
Recherche avancée
Médias (16)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (72)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 ;
Sur d’autres sites (11357)
-
RTSP relay on iOS using swift [on hold]
15 novembre 2015, par kiran_gI need to implement an RTSP relay. I have already done this for raspberry. Basically the app on raspberry pi needs to PULL and RTSP feed from an IP camera and PUSH it to another PC. I did it using the following ffmpeg command :
ffmpeg -i "rtsp://10.10.10.2:1001/stream" -vb 150000 -g 60 -vprofile baseline -level 2.1 -acodec aac -ab 64000 -ar 48000 -ac 2 -vbsf h264_mp4toannexb -strict experimental -f rtsp rtsp://10.10.10.3:1234/live/stream
Now I need to implement the same thing using an iOS app (swift). Can someone suggest any third party libraries which can do this. Basically it needs to do RTSP PULL from one side and do RTSP PUSH on the other side. An optional requirement will be displaying the stream being relayed.
-
How to encode BGRA sequence to H.264 video stream using FFmpeg [on hold]
31 octobre 2016, par GalaxyNow I have a frame of BGRA data stored in an array, which is kept being updated under a certain frame rate. Can I use FFmpeg to encode it to a H.264 video stream ? Is there any API I can leverage ?
This is used as a live H.264 video stream, so I need to write the header at the beginning and send the stream to my server through RTMP. I’m not sure if FFmpeg is suitable for this task. I also heard about GSteamer, I don’t know which one is better to me.
I’m developing on OS X using C++.
-
commande ffmpeg not working from php [on hold]
29 août 2016, par Elmehdi AlloulI have a PHP file which executes a command :
echo shell_exec ( 'ffmpeg -i "http://ip:8000/play/a02o" -b:v 1000k -vb 1000k -minrate 1000k -maxrate 1000k -aspect 16:9 -s 720x480 -vprofile main -r 25 -threads 4 -bufsize 1500k -c:v libx264 -preset veryfast -g 60 -acodec libmp3lame -ar 44100 -ab 64k -strict experimental -f flv "rtmp://127.0.0.1:708/live/test" > /dev/null 2>/dev/null & ' ) ;
Everything is okay now, but when I restart nginx service, I’m forced to rerun the command again. Is there any way to start this command every time it is stopped ? Also, how can I know the status of the streaming, i.e., whether it is started or not ?