
Recherche avancée
Autres articles (20)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
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 (...)
Sur d’autres sites (4498)
-
html text overlay with ffmpeg [closed]
28 septembre 2020, par TomI have a web page where a user can write html text with online editor tool, ckeditor.com. I want to overlay the html text to a video. My understanding is that ffmpeg doesn't support text overlay with html.


Here are some possible options. I haven't tried any of them. I want to find out which is the better way to doing it.


- 

-
Parse the html text and convert it to text and settings that ffmpeg supports ? Is it doable ? How difficult is this ?


-
Use puppeteer (server side rendering) to create a png image for image overlay. Would the font rendering on the server side matches 100% with the client side ?


-
Someone suggests to do HTML->PDF->image using imagemagick + mpdf lib to image for image overlay. Many conversions are involved. Sound complex with many points of failure.










Are there other better options ?


-
-
What different video formats RTMP streaming support ?
23 octobre 2019, par PadfootIn almost all the online references related to FFMPEG and RTMP, I am getting -f as flv. Is there any other formats.
(I have tried avi, mpeg and h264, but no success.)
Currently, I am running following command -
ffmpeg -re -i video.mp4 -f s16le -ar 48000 -ac 2 -i audio.wav -c copy -f flv rtmp://192.168.0.1:1935/myapp/stream
The issues with -f flv in my case are -
- It doesn’t support 48k sample rate.
- None of my input videos are in flv format (I have to convert it to flv externally).
P.S. - I am using VLC as RTMP player.
EDIT -
I am getting following error with 48k audio file -
[flv @ 0x5650ba7afb80] FLV does not support sample rate 48000, choose from (44100, 22050, 11025)
-
Stream detect.py script in another device using ffmpeg in yolov5
5 mars 2023, par BubblesI want to stream the detect.py script yolov5 in another device using rtsp (ffmpeg)
for example, when i execute detect.py in cmd using webcam as an input then the live viewing also can stream in another device.


python detect.py --source 0 --weights yolov5s.pt --img-size 640 --conf 0.4 --save-txt --exist-ok | ffmpeg -f rawvideo -pix_fmt bgr24 -s 640x480 -i - -vcodec libx264 -pix_fmt yuv420p -preset ultrafast -f rtsp -rtsp_transport tcp rtsp://192.168.1.3:8554/



The above is the format i follow. However, I try to test it in online rstp viewer and vlc using the ip address and port but it shows the source is offline.


Is it possible to stream yolov5 detect.py script in another device using ffmpeg ?