
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (112)
-
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 ;
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (14984)
-
Can FFMPEG library send the live H264 iOS Camera stream to Wowza using RTSP
7 janvier 2015, par Vishal LohiaMy requirement is to get iphone camera feed, encode it into H264 format and send it to server.
In search, I found encoding part is possible with ffmpeg lib with x264 (libx264). But now the next task is to send the encoded data to Wowza server using rtsp.Please share some code or useful document if anyone is aware about this.
There is one another library for encoding purpose live555. But I am not sure it can send the data to server using rtsp.
-
FFmpeg live stream to Youtube with Raspberry Pi & USB Camera — What command to use for better quality ?
4 août 2023, par qwet142I am currently streaming to Youtube live with the following command :


ffmpeg -re -f s16le -i /dev/zero -f v4l2 -thread_queue_size 512 -codec:v mjpeg -s 1920x1080 -i /dev/video0 -c:v libx264 -preset ultrafast -acodec aac -b:v 3500k -g 30 -f flv rtmp://a.rtmp.youtube.com/live2/key


The frame rate is great, and the speed is 1x. However, the quality is very poor, improved only slightly after increasing the bitrate to 3000k. Changing the resolution doesn't help, and using veryfast makes things worse. How can I fix the quality ?


Note : there is no audio and this is a USB camera.


-
Stopped ffmpeg ip camera recording
25 août 2016, par Amit YadavI am using foscam ip camera. I want to record its stream in ts chunks and put no video screen when there is no stream available. I want to record 24 hrs video but I am not able to record it up to 24 hr. FFMPEG command stops inbetween. I am using below ffmpeg command
ffmpeg -rtsp_transport tcp -i rtsp ://username:password@192.168.0.68:554/videoMain -t 86400 -c:v copy -c:a copy -map 0 -f segment -segment_time 10 -strftime 1 -segment_list_type m3u8 -segment_list /home/user/Desktop/rec/del20160725111733.m3u8 -segment_format ts -y /home/user/Desktop/rec/%Y%m%d%H%M%S.ts
want no video screen like this http://www.electro-tech-online.com/customimages/2011/03/preview409-1.jpg
Or any other way to record stream using java code so that I have more control over stream to check if it is recording or not.