
Recherche avancée
Autres articles (51)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
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) (...)
Sur d’autres sites (7533)
-
RTMP server - without watermarks everything works fine --- with watermark one stream will not work nginx ffmpeg overlay watermark
10 juin 2021, par Ashley Taylorokay so i used the below config and everything works great both youtube and facebook work .


rtmp {
 server {
 listen 1935;
 chunk_size 8192;
 application live {
 record off;
 live on;
 push rtmp://a.rtmp.youtube.com/live2/djfghjkdfhgkjsdfglsjdfhj;
 push rtmp://127.0.0.1:19350/rtmp/453uy4uty8ryt85ty85yt8; (facbook)
 }
 
 }
 

 }



Now i have tried 2 seprate way to add a water mark (Youtube works fine Every time)
Facebook does not stream at all let alone with a watermark


examples i have tried below


rtmp {
server {
 listen 1935;
 chunk_size 8192;
 application live {
 record off;
 live on;
 exec /bin/ffmpeg -i rtmp://127.0.0.1:1935/live/$name
 -vf "movie=/etc/nginx/images/logo.png[logo];[0][logo]overlay=0:300"
 -c:v libx264 -f flv rtmp://127.0.0.1:1935/push/$name;
 }

 application push {
 live on;
 push rtmp://a.rtmp.youtube.com/live2/djfghjkdfhgkjsdfglsjdfhj;
 }
 }
}



and another


rtmp {
server {
 listen 1935;
 chunk_size 8192;
 application live {
 record off;
 live on;
 exec /bin/ffmpeg -i rtmp://127.0.0.1:1935/live/$name
 -vf "movie=/etc/nginx/images/logo.png[logo];[0][logo]overlay=0:300"
 -c:v libx264 -f flv rtmp://127.0.0.1:1935/push/$name;
 
 exec /bin/ffmpeg -i rtmp://127.0.0.1:1935/live/$name
 -vf "movie=/etc/nginx/images/logo.png[logo];[0][logo]overlay=0:300"
 -c:v libx264 -f flv rtmp://127.0.0.1:1935/pushh/$name;
 }

 application push {
 live on;
 push rtmp://a.rtmp.youtube.com/live2/djfghjkdfhgkjsdfglsjdfhj;
 }

 application pushh {
 live on;
 push rtmp://127.0.0.1:19350/rtmp/453uy4uty8ryt85ty85yt8;
 }
 }
}



Now for the life of me i just cannot get my brain to work.
i am very new to rtmp and have tried a dozen other ways before coming here for help.


i know this is going to be something i where i am making such a simple mistake


but on the other hand paying over $49 for restream.io for a shoddy service i just have to learn this for my own servers


-
How to reflect changes on video using c code with FFMEG library ?
29 mai 2014, par Sandeep TiwariI am making Video Editor Application for Android using ffmpeg, In App I have done some changes on video Like Like change duration of video, Draw some text over Video, change orientation of video. I manage these changes locally easily, but when user want to share this video on youtube/facebook etc. need applied these changes actually on video. I am using ffmpeg library . Taking help of http://dranger.com/ffmpeg/ , I am not using ffmpeg command,
anyone guide me how to done this functionality by using c code in ffmpeg.Any help is very appreciable.
-
Adding a text overlay with constant size to a video with varying resolutions using ffmpeg
22 décembre 2020, par BetaLixTI have a video with different resolutions at different points of the video and need to add a text overlay to it. I'm new with ffmpeg, the following is one of the commands I've tried


ffmpeg -i input.mp4 -vf "drawtext=text='Hello World'" -c:a copy output.mp4



But the output has blurry text with it resizing every few seconds (I'm guessing because of the various resolutions in the video) and some parts of the video have their aspect ratios altered.


Information on input file


The
input.mp4
video is generated from some .h264 raw data converted to mp4 and some blank mp4 generated that are all concatenated together, following are the commands

h264 to mp4 :


ffmpeg a.h264 -c copy a.mp4



blank mp4


ffmpeg -t 5 -f lavfi -i color=c=black:s=200x200 -c:v libx264 -tune stillimage -pix_fmt yuv420p -video_track_timescale 1200000 b.mp4



Concat :


ffmpeg -safe 0 -f concat -i list.txt -s 720x960 -c copy input.mp4



I'd be thankful for any advice on how I could achieve this