
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (75)
-
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 (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (7622)
-
How to Image on Another image using FFMPEG in Android
27 août 2021, par Retrix DevI am working on an Android Video Editor App & I am just a newbie.
I want to Add overlay of image , test, or sticker on video & that can be moved and resized by guestures like of zoom and drag.


Could anyone help me out in this


-
View MPEG-TS stream in browser
29 juin 2020, par alexenvI want to create a webpage with a video player that can play a H264 mpeg-ts live stream. I can't find any web player that can do that.



I read that JWPlayer is capable of doing that, but only in the paid version.



The stream can be played in VLC and any other players.



What can I do ? I tried using ffmpeg to convert the stream to something more useful, but no succes.



ffmpeg -i "http://localhost:9002/tv.ts" -vcodec libx264 -r 20 -s 320x240 -threads 2 -vprofile baseline -vpre zoom -strict experimental -acodec aac -ab 96000 -ar 48000 -ac 1 -f rtsp rtsp://192.168.0.28:1935/live/_definst_/c3




This is what I get :



Last message repeated 1 times
[h264 @ 0xbb9500] decode_slice_header error
[h264 @ 0xbb9500] no frame!
[mpegts @ 0xbaa6e0] decoding for stream 1 failed
[mpegts @ 0xbaa6e0] Could not find codec parameters for stream 1 (Video: h264 ([27][0][0][0] / 0x001B), none): unspecified size
Consider increasing the value for the 'analyzeduration' and 'probesize' options
Input #0, mpegts, from 'http://192.168.0.28:9002/tv.ts':
 Duration: N/A, start: 30764.854700, bitrate: N/A
 Program 1 
 Stream #0:0[0x44](???): Audio: mp2 ([3][0][0][0] / 0x0003), 48000 Hz, stereo, s16p, 128 kb/s
 Stream #0:1[0x45]: Video: h264 ([27][0][0][0] / 0x001B), none, 25 fps, 25 tbr, 90k tbn, 180k tbc
File for preset 'zoom' not found



-
How do i create video from images with any slideshow effects(like fadein fadeout,crossfade,slides) using ffmpeg in android
22 juillet 2021, par Bhavin PatelI want to create slideshow from bunch of images with the effects like fade-in fade-out, crossfade, slide from right to left, zoom-in zoom-out or any other slideshow effects and i want to create a video as a output from those images.



I have also tried with below FFMPEG command but it seems that it will work for only images having same resolution for different different resolution it doesn't.





String fourImage ="ffmpeg -loop 1 -t 3 -i /sdcard/videokit/one.jpg
 -loop 1 -t 3 -i /sdcard/videokit/two.jpg -loop 1 -t 3 -i /sdcard/videokit/three.jpg -loop 1 -t 3 -i /sdcard/videokit/four.jpg
 -filter_complex [0:v]trim=duration=3,fade=t=out:st=2.5:d=0.5[v0] ;[1:v]trim=duration=3,fade=t=in:st=0:d=0.5,fade=t=out:st=2.5:d=0.5[v1] ;[2:v]trim=duration=3,fade=t=in:st=0:d=0.5,fade=t=out:st=2.5:d=0.5[v2] ;[3:v]trim=duration=3,fade=t=in:st=0:d=0.5,fade=t=out:st=2.5:d=0.5[v3] ;[v0][v1][v2][v3]concat=n=4:v=1:a=0,format=yuv420p[v]
 -map [v] -preset ultrafast /sdcard/videokit/fourImageSecond.mp4" ;





And also look at this link as i want to create same effects but it works for same resolution image only.



So my question is, how can I create video from images with slideshow effects using ffmpeg ?



Any help would be highly appreciable.