
Recherche avancée
Médias (91)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Wired NextMusic
14 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (101)
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
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.
Sur d’autres sites (5337)
-
How to fix "fatal error : x.264 no such file or directory"
24 avril 2019, par user11340790I wrote a makefile which builds a C program attaching the x.264 header. After trying to execute the makefile in terminal I receive the fatal error :
"example.c line [line of #include ] x264.h no such file or directory". Below you can find the C code and makefile (located in the same folder, the library - containing the x264.pc file- is in the folder libx264 of the parent folder). I would be very grateful if you could help with the linkage.



Makefile :



CC = gcc

 CFLAGS = -c -Wall `export PKG_CONFIG_PATH=../libx264 && pkg-config --cflags x264`
 LDFLAGS = -static `export PKG_CONFIG_PATH=../libx264 && pkg-config --libs --static libx264`


 all: Release

 Debug: CFLAGS += -g
 Debug: example

 Release: example

 test: example.o
 $(CC) -o example example.o $(LDFLAGS)

 test.o: example.c
 $(CC) $(CFLAGS) example.c -o example.o

 clean:
 rm -f example.o example




example.c code



#include 
 #include 
 int main( int argc, char **argv )
 {
 int width, height;
 return 0;
 }



-
ffplay and ffmpeg subtitles/ass filters errors/crash
23 octobre 2014, par Mr AlmightyI’m trying to use ffplay with subtitle and embed/burn a subtitle in a video.
I tried to load a .mkv file with a subtitle burned/embed inffplay
and nothing, tried using the-sst
option, and nothing. Then I triedsubtitles
filter with a .mp4 file and a .srt file. :ffplay video.mp4 -vf subtitles="video.srt"
...and I got this error :
[Parsed_subtitles_0 @ 00000000064956e0] No usable fontconfig configuration file found, using fallback.
Fontconfig error : Cannot load default config file
I realized that
MPlayer
generates afont
folder with the config file on it, then I copied that folder, placed in the same folder thatffplay
is located, and... errors :Fontconfig warning : FcPattern object size does not accept value 0
And then it crashes.
I tried the same with
ffmpeg
:ffmpeg -i video.mp4 -vf subtitles="video.srt" output.mp4
And the same errors and crash.
What am I doing wrong ? And how can I fix this ?
-
MoviePy failing to execute because it cannot find ffmpeg on my macOS
1er décembre 2023, par altiinberiishaI have a macbook pro running sonoma latest version, i have installed ffmpeg with brew and its located at
/opt/homebrew/bin/ffmpeg


Im trying to run this script but i get the error :


from moviepy.editor import *
from moviepy.video.tools.subtitles import SubtitlesClip
from moviepy.config import change_settings
import os

os.environ["OMP_NUM_THREADS"] = 1
os.environ["IMAGEIO_FFMPEG_EXE"] = r"/opt/homebrew/bin/ffmpeg"

generator = lambda txt: TextClip(txt, font='Arial', fontsize=24, color='white')
subs = [((0, 4), 'subs1'),
 ((4, 9), 'subs2'),
 ((9, 12), 'subs3'),
 ((12, 16), 'subs4')]

subtitles = SubtitlesClip(subs, generator)

video = VideoFileClip("video.mp4")
result = CompositeVideoClip([video, subtitles.set_pos(('center', 'bottom'))])

result.write_videofile("output.mp4", fps=video.fps, temp_audiofile="temp-audio.m4a", remove_temp=True, codec="libx264",
 audio_codec="aac")




error :

RuntimeError: No ffmpeg exe could be found. Install ffmpeg on your system, or set the IMAGEIO_FFMPEG_EXE environment variable.


I tried reinstalling ffmpeg and installing it in the env of the project but still no luck.