
Recherche avancée
Médias (3)
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (55)
-
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 ) (...) -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation"
Sur d’autres sites (6902)
-
Setting up a server to redistribute a webcam stream
22 janvier 2013, par Martin TaleskiI am trying to set up a streaming server that will receive a RTP stream and redistribute it.
I am able to create the stream with :
ffmpeg -f video4linux2 -i /dev/video0 -vcodec mpeg2video -r 25 -pix_fmt yuv420p -me_method epzs -b 2600k -bt 256k -f rtp rtp://myserver:8090/
I see the UDP packets coming to my server, but I was not able to set up a feed and a stream with ffserver. I can also view the stream though VLC if I change the destination IP of the server with my local IP.
I am now considering writing a daemon in python or perl or C, that will read the UDP packets coming on port 8090 on the server, and distribute them on another port. Not sure if this is a great idea, but can not find any other clues...
Any clues how to make this happen ?
-
Can speex be packed into mpegts stream ?
24 juillet 2013, par user2384001I want to use speex in a real-time application. I want to playback this mpegts stream by ffmpeg. Are there any means to pack speex into mpegts stream ?
-
FFMPEG Transcode MP3 to MP4 and then stream
27 juillet 2018, par SamI have an MP3 stream with meta data (That I need to keep) and I need to transcode
it into AAC+ MP4. I then need to stream this MP4 to a Shoutcast server.The current line that I have is :
ffmpeg -re -i http://Input Server IP And Port -b:a 128k -ar 44100 -c aac -f mp4 http://output server IP and Port
I will get an error saying :
[mp4 @ 000002700de16dc0] muxer does not support non seekable output
Could not write header for output file #0 (incorrect codec parameters ?) : Invalid argument
Error initializing output stream 0:0 —Think Internet radio show.
If I have gotten this completely wrong, please tell me, and if anyone could shine some light onto this, that would be great. Thanks.