
Recherche avancée
Médias (91)
-
#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
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (100)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
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 (...)
Sur d’autres sites (8091)
-
x264 segmentation error :in ff_rgb24ToY_avx ()
20 octobre 2017, par helloliuOn my Ubunutu 16.04,I compiled the ffmpeg 、nasm and x264 code as follows :
cd ffmeg/
./configure &&make &&make install
git clone http://git.videolan.org/git/x264.git
cd x264/
./configure &&make &&make installAnd then, I run in the follow way :
./x264 --input-res=1080x1920 --input-csp=rgb --output ~/x264/raw_framews.264 ~/x264/raw_framews
Unfortunately,it reports with the errors as follows :
lavf [error]: could not open input file
avs [error]: failed to load avisynth
raw [info]: 1080x1920p 0:0 @ 25/1 fps (cfr)
resize [warning]: converting from rgb24 to yuv420p
x264 [info]: using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2
x264 [info]: profile High, level 4.0
[swscaler @ 0x3f31540] Warning: data is not aligned! This can lead to a speedloss
Thread 1 "x264encode" received signal SIGSEGV, Segmentation fault.
0x0000000000534777 in ff_rgb24ToY_avx ()Can anyone help us with this error ? many thanks.
-
python converting video to audio
29 janvier, par programmer44We are working on a project to convert video to audio, and this is the sample code :



from converter import Converter
from moviepy.editor import *
c = Converter()
clipv = 'g.mp4'
clipc = VideoFileClip(clipv).subclip(0,20)
conv = c.convert(clipc, 'clip5.mp3', {'format':'mp3','audio':{'codec': 'mp3','bitrate':'22050','channels':1}})
for timecode in conv:
 pass 




However, it gives me this error



Traceback (most recent call last)
 File "del.py", line 7, in <module>
 for timecode in conv:
 File "/usr/local/lib/python2.7/dist-packages/converter/__init__.py", line 181, in convert
 if not os.path.exists(infile):
 File "/usr/lib/python2.7/genericpath.py", line 18, in exists
 os.stat(path)
TypeError: coercing to Unicode: need string or buffer, instance found
</module>



Of course, the other alternative is to use
ffmpeg
, but the problem is that the video in this case is an object instance, and as of now I am yet to find a way of passing object instances from python to bash.


The video object could be written as a video file, but that will lead to lots of time wastage, as the conversion takes place inside a loop.



It is quite time consuming to have to write the video file time and again, so as to easily extract audio from it.



I would highly appreciate any solution that will either help me get around the above error, or any that will allow me to pass the video
fileclip
object instance to bashffmpeg
as a variable.

-
libavcodec/h264_parse : don't use uninitialized value when chroma_format_idc==0
7 septembre 2017, par Mark Wachslerlibavcodec/h264_parse : don't use uninitialized value when chroma_format_idc==0
When parsing a monochrome file, chroma_log2_weight_denom was used without
being initialized, which could lead to a bogus error message being printed, e.g.
[h264 @ 0x61a000026480] chroma_log2_weight_denom 24576 is out of range
It also could led to warnings using AddressSanitizer.Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>