
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (59)
-
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 -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
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 (...)
Sur d’autres sites (9412)
-
Mirrored Arabic Letters using TextClip Moviepy
4 août 2020, par SamI am trying to render the video which contains arabic letters. let's use مرحبا for the example. After video rendered the result is mirrored.


background = mp.ColorClip(mobile_size, (255, 255, 255), duration=0.5) #float(audiolength.info.length)
text1 = mp.TextClip(english, fontsize=45, color=fcolor, font=Font, size= (mobile_size[0], 185), method = 'caption', align="south").set_duration(0.5) #float(audiolength.info.length)
text2 = mp.TextClip(formatChineseSentences(translated).encode("utf-8"), fontsize=45, color=fcolor2, font=Font, size= (mobile_size[0], 185), method = 'caption', align="north").set_duration(0.5) #float(audiolength.info.length)

clip1 = mp.CompositeVideoClip([background, text1.set_position(('center', "top")), text2.set_position(('center', "bottom"))])



Expected Behavior




Actual Behavior




Steps to Reproduce the Problem


Rendering TextClip with Arabic Characters. For this case we can use مرحبا.


Specifications


Python Version : Python 3.8.5
Moviepy Version : 1.0.3
Platform Name : Mac OS Catalina
Platform Version : 10.15.6


-
Autostart Ffmpeg when I connect to Red5 ? [on hold]
6 novembre 2013, par Alex ScottI have setup Red5 media server on my server along with ffmpeg and I can connect to my Red5 server using Flash Media Encoder and I can view my stream within my website.
My problem is that I know you can now use ffmpeg to convert the stream into segmented files and create the m3u8 playlist.
Unfortunately, my stream is not live 24/7, only on weekends, so I want to know if it is possible to automatically start the ffmpeg decoding process when the stream is active and end it when the stream finishes ?
The website which I am using this on is Official Sound FM.
Thanks in advance for helping me with this matter and if anyone should require my services to setup a similar streaming service with them, please don't hesitate to ask me.
-
Can I concatenate stream identifiers in FFMPEG ?
29 septembre 2023, par ÁngelI would like to order tracks by title and other metadata identifiers.


-map 0:a:m:title:"español"
works as intended. It selects the track titled "español". But-map 0:a:m:title:"español latinoamericano":language:spa
doesnt seem to work. I have tried-map 0:a:m:title:"español":m:language:spa
as well. Is there any way to concatenate identifiers ?

Also, are there any more metadata identifiers besides title, handler_name and language ? I have tried channels (2-6, for example) and channel_layout (5.1(side), for example). But no luck so far.


Is there any documentation for this ? Official mapping documentation doesn't seem to mention anything about this.