
Recherche avancée
Médias (1)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
Autres articles (32)
-
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 (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (8405)
-
Overlay/fade image over beginning of MKV with ffmpeg
17 mars 2021, par SpunkieI've got an MKV that I would like to replace the first 5 seconds with a static png image that fades in/out from black. How can I accomplish this with just ffmpeg ?


-
How to use rotate filter in FFmpeg ? [duplicate]
14 décembre 2020, par shubham rawatI have to overlay text at each second of the video and the text should be tilt. I am able to overlay text but can't rotate the text. The command I am using to overlay is.


ffmpeg -y -i gta5.mp4 -vf "[in]drawtext=text=\'"ALT"\': fontcolor=white: borderw=2: fontfile=Arial #Black:fontsize=w*0.04: x=(w-text_w)/1.5: y=120: enable=\'between(t,0,'+str(last_point)+')\',drawtext=text=\'"0"\': fontcolor=blue: borderw=2: fontfile=Arial #Black:fontsize=w*0.04: x=(w-text_w)/1.5: y=70: enable=\'between(t,0.00,10)\'[out]" -codec:a copy mos.mp4



I want to use the rotate filter in this command or any filter which can tilt the text by some degrees.
I know how to rotate one text as it is already answered in Overlaying text on video with required angle using FFMPEG but I am having issues with multiple texts at different times.


-
FFMPEG stream is corrupted on Exoplayer
12 septembre 2023, par Musa KavakI'm trying to stream my computer's screen with UDP to display in Android with Exoplayer.


I started the stream with this line :


ffmpeg -re -f x11grab -i :0 -c:v libx264 -preset ultrafast -tune zerolatency -f mpegts udp://192.168.1.107:40001`



And received with the media3 Exoplayer :


Surface {
 val exoPlayer = ExoPlayer.Builder(this@MainActivity).build().apply {
 //Same result as setMediaSource()
 setMediaItem(MediaItem.fromUri("udp://192.168.1.107:40001"))
 prepare()
 }

 AndroidView(
 factory = {
 PlayerView(it).apply {
 player = exoPlayer
 }
 }
 )
 }



But the result is black screen with dots :




I can see the stream with
ffplay
it's working perfectly.

I tried to add audio to the stream because I thought a
mpegts
file without audio could cause the problem. I can hear the audio but video still the same.

Then switch to Windows and tried with
gdigrab
and... Yes, still the same.

Thank you for your time in advance.