
Recherche avancée
Médias (1)
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
Autres articles (80)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, 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 (...) -
Initialisation de MediaSPIP (préconfiguration)
20 février 2010, parLors de l’installation de MediaSPIP, celui-ci est préconfiguré pour les usages les plus fréquents.
Cette préconfiguration est réalisée par un plugin activé par défaut et non désactivable appelé MediaSPIP Init.
Ce plugin sert à préconfigurer de manière correcte chaque instance de MediaSPIP. Il doit donc être placé dans le dossier plugins-dist/ du site ou de la ferme pour être installé par défaut avant de pouvoir utiliser le site.
Dans un premier temps il active ou désactive des options de SPIP qui ne le (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (10627)
-
ffmpeg Could not find input stream [closed]
17 avril 2013, par Peter WalkerI've seen lot's of post on streaming video feeds to ffserver but still haven't found what I wanted.
I use not only on the mp4 file but avi and other formats as well.
ffmpeg -i test5.mp4 http://localhost:8090/feed1.ffm
I keep finding this error.
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'test5.mp4':
Metadata:
major_brand : isom
minor_version : 512
compatible_brands: isomiso2mp41
encoder : Lavf53.21.1
Duration: 00:05:00.00, start: 0.000000, bitrate: 278 kb/s
Stream #0.0(und): Video: mpeg4 (Simple Profile), yuv420p, 640x320 [PAR 1:1 DAR 2:1], 277 kb/s, 25 fps, 25 tbr, 25 tbn, 25 tbc
Incompatible sample format '(null)' for codec 'mp2', auto-selecting format 's16'
Last message repeated 1 times
Output #0, ffm, to 'http://localhost:8090/feed1.ffm':
Stream #0.0: Video: [0][0][0][0] / 0x0000, yuv420p, q=0-0, 1000k tbn
Stream #0.1: Video: mpeg1video, (null), 32622x226393720, q=2-31, pass 1, pass 2, 226393 kb/s, 1000k tbn
Stream #0.2: Audio: mp2, 22050 Hz, 1 channels, s16, 226391 kb/s
Stream #0.3: Video: msmpeg4, yuv420p, 352x240, q=2-31, 226391 kb/s, 1000k tbn, 15 tbc
Could not find input stream matching output stream #0.2
*** glibc detected *** ffmpeg: free(): invalid pointer: 0x0000000000a53d00 ***
======= Backtrace: =========
/lib/x86_64-linux-gnu/libc.so.6(+0x7e626)[0x7f6e0d4af626]
/usr/lib/x86_64-linux-gnu/libavformat.so.53(avformat_free_context+0xb0) [0x7f6e0f2c9c70]
ffmpeg[0x4089bf]
ffmpeg[0x40a52f]
ffmpeg[0x407a04]
/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xed)[0x7f6e0d45276d]The config file I used for the ffserver is
Port 8090
RTSPPort 7654
BindAddress 0.0.0.0
MaxHTTPConnections 2000
MaxClients 1000
MaxBandwidth 500000
CustomLog -
NoDaemon
<feed>
File /tmp/feed1.ffm
FileMaxSize 5M
# NoAudio
</feed>
<stream>
Feed feed1.ffm
Format rtp
# NoAudio
VideoFrameRate 30
</stream>Can anyone help me figure out some something or something to look for ?
I tried googling but almost everyone uses video feeds instead or it just works well for them.
Any clue or direction/suggestion would help. Thank you so much in advance. -
ffmpeg live stream to Youtube command line
30 juin 2020, par brainoverflowseWould anyone assist myself with creating the correct ffmpeg command line for an audio and video rtsp camera feed that is 1440 and scale it to 1080 with a max bitrate of 10000 ?


-
Is there any way to have a number of video feeds cycle in rotation with ffmpeg ?
1er novembre 2020, par BrennanIs there any way I could take, lets say, 4 live video streams and have them cycle in a rotation on the screen ? I want to take a video feed and play, wait for 5 seconds, go to next video feed, wait 5 seconds, etc...Below is the actual
ffmpeg
command I want to use and the only idea I have thus far is :

for rotation in $source4 $source5 $source6 $source7; do
 ffmpeg -rtsp_transport tcp -stimeout 100 -i $source1\
 -rtsp_transport tcp -stimeout 100 -i $source2\
 -rtsp_transport tcp -stimeout 100 -i $source3\
 -rtsp_transport tcp -stimeout 100 -i $rotation\
 -filter_complex "nullsrc=size=3840x2160 [base];\
 [0:v] setpts=PTS-STARTPTS [upperleft];\
 [1:v] setpts=PTS-STARTPTS [upperright];\
 [2:v] setpts=PTS-STARTPTS [lowerleft];\
 [3:v] setpts=PTS-STARTPTS [lowerright];\
 [base][upperleft] overlay=shortest=1 [tmp1];\
 [tmp1][upperright] overlay=shortest=1:x=1920 [tmp2];\
 [tmp2][lowerleft] overlay=shortest=1:y=1080 [tmp3];\
 [tmp3][lowerright] overlay=shortest=1:x=1920:y=1080"\
 -c:v h264_nvenc -preset llhq -f matroska - | ffplay -
 sleep 5
 done



As you can see, this would not be very efficient or even usable considering how long it takes to get everything going. If anyone has any ideas I would appreciate it. I am only fluent in Linux shell scripting (Bash) so any other language would be out of my reach at this time. I am defiantly open to suggestions for other tools or frameworks to try. The main goal is to make a script for a group of security cameras with one in the mosaic that rotates through all the additional camera feeds that do not include the 3 already on the screen. It needs to be as low maintenance as possible i.e. a network issue drops connection it should automatically keep checking for connectivity and restart when established. I can do this in a Bash script very easily but getting the videos all up on screen is been a challenge. I considered making completely separate invocations of
ffplay
for each feed then usingwmctrl
or similar to arrange them on screen but I am still left with the issue of restarting the rotating one all the time.