
Recherche avancée
Médias (29)
-
#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 (48)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (5811)
-
lavfi/qsv : Copy metadata fields from the given input
23 avril 2024, par Haihao Xianglavfi/qsv : Copy metadata fields from the given input
Currently it always copies the metadata fields from the last input when
there are multiple inputs for the filter. For example, the metadata
fields from input1 are copied to the output for overlay_qsv filter,
however for regular overlay filters, the metadata fields from input0 are
copied to the output. With this fix, we may copy the metadata fields
from input0 to the ouput as well.Signed-off-by : Haihao Xiang <haihao.xiang@intel.com>
-
Can't reproduce a mp4 video in any of my browsers (Ubuntu 22.04.4)
8 mai 2024, par user3303019This one is weird. I can't reproduce the following video in the browser (tried brave, chrome, firefox and edge).


https://a-pop.stg.intuitivo.ai/assets/animations/wowMomentOpenDoor.mp4


- 

-
I have installed all sorts of codecs I may need and the regular video player plays the file no problem.


-
For some reason it was working on Brave up until last week and it wasn't on chrome.


-
It only happens on Linux apparently. Windows, Mac, android and iOS have no problem with the browser playing the animation.










I don't have a clue what could be happening. I've checked other mp4 videos online and they work (from v.reddit)


-
-
Edge of text clipped a few pixels in ffmpeg
18 mai 2024, par THEMOUNTAINSANDTHESKIESTrying to make a short video of a background image with text and some background audio. It's functional, but the right side of each line of my text is always clipped a few pixels. What am I missing ?


Here's my python code (which includes the ffmpeg command) :


font_size = 100
text='Example Text Example Text \n Example Text'
font_path = 'Bangers-Regular.ttf'
image_path = 'background.jpg'
audio_path = 'audio.wav'
duration = 15 #or whatever the audio's length is
output_path = 'output.mp4'

font_path_escaped = font_path.replace("\\", "\\\\\\\\").replace("C:", "C\\:")

lines = text.split('\n')
num_lines = len(lines)
line_height = font_size + 10
start_y = (1080 - line_height * num_lines) // 2

filter_complex = []
for i, line in enumerate(lines):
 y_position = start_y + i * line_height
 filter_complex.append(
 f"drawtext=text='{line}':fontfile='{font_path_escaped}':fontsize={font_size}:"
 f"x=((w-text_w)/2):y={y_position}:"
 "fontcolor=white:borderw=6:bordercolor=black"
 )

filter_complex_string = ','.join(filter_complex)

command = [
 'ffmpeg',
 '-loop', '1',
 '-i', image_path,
 '-i', audio_path,
 '-filter_complex', filter_complex_string,
 '-map', '[v]',
 '-map', '1:a',
 '-c:v', 'hevc_nvenc',
 '-c:a', 'aac',
 '-pix_fmt', 'yuv420p',
 '-t', str(duration),
 '-shortest',
 '-loglevel', 'debug',
 '-y',
 output_path
]


subprocess.run(command, check=True)
print(f"Video created successfully: {output_path}")



and a frame from the outputted video :