
Recherche avancée
Autres articles (22)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (5520)
-
What is the difference between a stream and channel in ffmpeg ?
16 septembre 2022, par Thomas BrattThe documentation refers to streams but it is not clear if an audio channel is a stream or whether a stream contains multiple audio channels.


-
FFMpeg : Stream desktop to another network
7 octobre 2019, par A PersonI hope you can help me in this quest :
I have been trying to stream my desktop through direct show or inbuilt screen grabber. i want to be able to send it to another network so i can view the stream lets say my home desktop from work. The aim is to be able to stream a monitoring station from my setup from the the network (home) and view on WIFI (Work).
I have done the following so far :
ffmpeg -f dshow -i video="screen-capture-recorder":audio="virtual-audio-capturer" -vcodec h264_nvenc -f mpegts udp://10.1.0.0:1234
However, the issue is that I can only view the stream on the same network.
I tried passing the public IP of the network as the
udp/rtp
link but still doesn’t work.when i tried changing the
udp
tortp
I get the error sayingsdp required
, but again I am not sure this will stream to another network rather than same network.My aim is this.
Have my desktop stream over some IP or anything and either use ffplay or vlc to view it from another network.
-
Decoding Raw H264 stream in android ?
14 février 2019, par willI have a project where I have been asked to display a video stream in android, the stream is raw H.264 and I am connecting to a server and will receive a byte stream from the server.
Basically I’m wondering is there a way to send raw bytes to a decoder in android and display it on a surface ?
I have been successful in decoding H264 wrapped in an mp4 container using the new MediaCodec and MediaExtractor API in android 4.1, unfortunately I have not found a way to decode a raw H264 file or stream using these API’s.
I understand that one way is to compile and use FFmpeg but I’d rather use a built in method that can use HW acceleration. I also understand RTSP streaming is supported in android but this is not an option. Android version is not an issue.