
Recherche avancée
Autres articles (88)
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (4236)
-
FFMPEG - Instructional video combining letters to a background to form a word
6 juin 2020, par KnideI'm trying to help with coding a FREE site for instructional video for kids on how to write in australian. To help with the current pandemic that we are experiencing right now.



Anyway, I'm new to ffmpeg and would like to do the letter combinations programatically using it.



So basically I have a form where teachers or parents can enter a word, and I have video instructions for each letter, and would combine them to form the word.



Example : Dog



This is the background :
https://drive.google.com/file/d/1Ds1sRKQ98c5d31dI6qkqTrp1U9f89nv2/view?usp=sharing



These are the letters :



D - https://drive.google.com/file/d/1DHa1sZ7mklY1p3lquD8h5kTbXaZmtB_z/view?usp=sharing



o - https://drive.google.com/file/d/1Ytwq_3l7x0vRDMEpZpmFjT9QNICYWH_D/view?usp=sharing



g - https://drive.google.com/file/d/16jcOsrSbMSbsk2vsqeMXv9Cc4Uss7qtj/view?usp=sharing



And the output would become :
https://drive.google.com/file/d/1RT38IOwXsL9kW9mj41KrxwfI_kdZy45j/view?usp=sharing



If you could help with supplying what ffmpeg code we could use to have the output video, that would be great.


-
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


-
Is variable resolution possible in MPEG-4 or Matroska ?
29 août 2020, par Chris_FIt's become increasingly common for movies to contain sections with varying aspect ratios. For instance, the movie The Dark Knight is is sometime 16:9 full frame, and at other times 2.40:1 with letter boxing. This is fine when viewed on a 16:9 (or even 4:3) screen, but if you try to watch it on a 2.40:1 screen you will get simultaneous horizontal and vertical letterboxes. Extremely undesirable.


Currently I use MPC-HC, which has a feature where it is able to analyze the video in real time, detect letter boxing, and dynamically crop the video. This works pretty well, but it's kind of an ugly solution. Are there any video formats that allow meta data like image resolution to change throughout the video ?