
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 (50)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.
Sur d’autres sites (5465)
-
FFMpeg converts locally but not on Ubuntu production server
1er janvier 2016, par LargeTunaI am using ffmpeg & this command to convert a .mov to .mp4. It works locally but it will not work on the production server.
Command: /path/to/ffmpeg inputFile.MOV -vcodec libx264 -pix_fmt yuv420p -profile:v baseline -preset slow -crf 22 -movflags +faststart outputFile.mp4
I have checked to see that ffmpeg is installed on the Ubuntu 14.04.x prod server...
/usr/bin/ffmpeg
I get this error each time :
libavutil 55. 11.100 / 55. 11.100
libavcodec 57. 20.100 / 57. 20.100
libavformat 57. 20.100 / 57. 20.100
libavdevice 57. 0.100 / 57. 0.100
libavfilter 6. 21.101 / 6. 21.101
libavresample 3. 0. 0 / 3. 0. 0
libswscale 4. 0.100 / 4. 0.100
libswresample 2. 0.101 / 2. 0.101
libpostproc 54. 0.100 / 54. 0.100
Output #0, mov, to 'inputFile.MOV':
Output file #0 does not contain any streamThoughts ?
-
How to stream cv2.VideoWriter frames to and RTSP server
10 juin 2022, par chasez0rEnvironment : Docker, Ubuntu 20.04, OpenCV 3.5.4, FFmpeg 4.2.4


Im currently reading the output of a
cv2.VideoCapture
session using theCV_FFMPEG
backend and successfully writing that back out in real time to a file usingcv2.VideoWriter
. The reason I am doing this is to drawing bounding boxes on the input and saving it to a new output.

The problem is I am doing this in a headless environment (Docker container). And I’d like to view what's being written to
cv2.VideoWriter
in realtime.

I know there are ways to pass my display through using XQuartz for example so I could use
cv2.imshow
. But what I really want to do is write those frames to an RTSP Server. So not only my host can "watch" but also other hosts could watch too.

After the video is released I can easily stream the video to my RTSP Server using this command.


ffmpeg -re -stream_loop -1 -i output.mp4 -c copy -f rtsp rtsp://rtsp_server_host:8554/stream


Is there anyway to pipe the frames as they come in to the above command ? Can
cv2.VideoWriter
itself write frames to an RTSP Server ?

Any ideas would be much appreciated ! Thank you.


-
How to run FFMPEG at my web host server
26 avril 2013, par user1978421I want to perform some video process at my web host server. I don't think the web host server will allow me to execute an exe file for security reasons.
Should I use SharpFFMpeg ?
I have downloaded SharpFFMpeg. But it's lacking a proper documentation.
Can someone give one example how to perform a conversion from one video format to another ?
I have written my execution program, but the compiler says it cannot file the file specified. What's wrong with it ?
string command = @"D:\Recorded TV\ffmpeg.exe -i ""Australia's Toughest Police_QUEST_2013_04_17_21_57_00.wtv"" -s 800x400 throughCS.mp4";
try
{
ProcessStartInfo psi = new ProcessStartInfo("\"" + command + "\"");
psi.RedirectStandardOutput = true;
psi.UseShellExecute = false;
psi.CreateNoWindow = true;
Process proc = new Process();
proc.StartInfo = psi;
proc.Start();
string result = proc.StandardOutput.ReadToEnd();
tb1.Text = result;
Debug.WriteLine(result);
}