
Recherche avancée
Médias (16)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (103)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Sélection de projets utilisant MediaSPIP
29 avril 2011, parLes exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
Ferme MediaSPIP @ Infini
L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)
Sur d’autres sites (12015)
-
RTSP to RTMP Youtube Live only displays online for few seconds
2 juin 2016, par PoisonI’m trying to get the feed from an IP camera to Youtube Live. Simple enough uh.
The command I’m using is the usual :
ffmpeg -i rtsp://user:pass@ip:port/videoMain -f flv -r -s -an rtmp://a.rtmp.youtube.com/live2/per-sonal-code
What happens
Live Youtube receives the signal and says its healthy, after two or less seconds a red box appears saying they’re not receiving my signal. After that it displays "No signal". Webcam image is never shown.
What I’ve tried
Different parameters (
-re, -rtsp_transport tcp, -s 640x480, -g 30, -r 30
..) and different combinations of them, plus different resolutions, different buffer sizes and stream sizes, and different Ingestion settings on Youtube.Followed different very basic stuff tutorials.
I’ve done it with ffmpeg in Windows 7 and Ubuntu 16.04, different networks (home and work), checked for possible port problems,...
What confuses me
Using streaming software like XSplit, or Manycam it actually works on the same computers !
Also using the different command combinations, Youtube always receives the signal and its healthy before changing and displaying "No signal", its not complaining about low bitrate, or wrong format like I’ve seen in the different tutorials.I need to create two different streams for two cams, so ideally I’d prefer to use ffmpeg. However if anyone knows a software that can do this, please tell me. I’ve been stuck with this long enough !
Thanks.
-
FFMPEG, Blur an area of a video using Image Select Areas Plugin
12 juillet 2016, par DrupalistI am building an online video editor. I need to allow the users to blur an area of movies. This must be done graphically, I mean user should be able to select an area of a video, using an screenshot, then the selected area must be blurred. Some thing like this
Is there anyway to map this selected area dimension and its distance from borders to the real values that must be applied to the video ?
I mean four numbers,
width, length, top, left
will be provided using this plug in and I need to use these numbers to blur an area of videos.I take an screenshot of video. In order to keep the aspect ratio, I will fix the width to
800px
and let the height to be scaled up/down. It is clear that thewidth, length, top, left
of the selected area of the screenshot is a factor of thewidth, length, top, left
of the area that must be blurred in video. but I don’t know how to get this factor. Besides that I don’t know how to get the video resolution.Thanks in advance.
Update
This is my PHP code that gets the selected area dimensions and offsets
$iLeft = $_POST['left'];
$iTop = $_POST['top'];
$iWidth = $_POST['width'];
$iHeight = $_POST['height'];
exec('ffmpeg -i '.$url.' -filter_complex "[0:v]scale=iw*sar:ih,setsar=1,split[bg][bb];[bb]crop='.$iWidth.'*iw/800:iw*'.$iHeight.'/800:'.$iWidth.'*iw/800:'.$iHeight.'*iw/800,boxblur=10[b0];[bg][b0]overlay='.$iLeft.'*W/800:'.$iTop.'*W/800"" '.$name.' > block.txt 2>&1');$iLeft, $iTop, $iWidth, $iHeight
are the left, top, width and height of the selected area via the image plugin.It blurs many selected areas very well, but areas like this
The Image
Left, Top, Width, Height
is257, 39.26666259765625, 10, 391
don’t get blurred. Also a video with Dimension
207x207
didn’t get blurred as well. -
FFMPEG how do i add 1 image to 1 video
15 avril 2020, par dasok I found a code online from 1 of the StackOverflow page tested it and it adds 10 seconds black screen before the video starts.

Summary

i have 55.mp4 and logo.png i want to replace black screen with png logo


ffmpeg -i 55.mp4 -filter_complex "[0:v]tpad=start_duration=10:color=black[v];[0:a]adelay=10000|10000[a]" -map "[v]" -map "[a]" -y out2222.mp4




I have logo.png in the same path how do I use that instead of black screen.

I do not wish to use overlays. I want it as it is, just replace black-screen with my png