
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (60)
-
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 -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ; -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.
Sur d’autres sites (7076)
-
running command line programs in background using python os or subprocess module
12 mai 2017, par user3735489I am trying to run a command using
os
orsubproccess
module in python. the command prompt window briefly flickers before terminating. Is there a way of eliminating that popping up of command prompt window..?For example :
os.system("ffmpeg -i output.wav output.flac")
Is there a way I can run this in the background so that user may not notice this..?
I am running windows 7 with python 2.7.
-
Loading ffmpeg-php module fails
21 août 2013, par i.h4d35I've been trying this for a couple of days now. I am trying to install ffmpeg-php on my CentOS server.
- OS : CentOS 6
- PHP : 5.5
- ffmpeg : 1.2.1
- ffmpeg-php : 0.6.0
The ffmpeg installation went on without a hitch and I am able to convert files back and forth via the CLI.
While installing ffmpeg-php, I encountered errors while making (after configuring) due to time.h references which was corrected by renaming the files creating with an extension .loT to .lo (as rightly pointed out here)
Once this was done, the make process went on smoothly and the make install went through without a hitch. However, after specifying the extension=ffmpeg.so in the php.ini file and after restarting Apache, the module doesn't load or show up in phpinfo().
The Apache error log shows only "PHP Warning : PHP Startup : Invalid library (maybe not a PHP library) 'ffmpeg.so' in Unknown on line 0" and nothing else.
make test also shows the same error and FAILS the associated tests. I've checked here which wasn't very helpful. Also, I read somewhere that it may be the issue with permissions but the permissions for the ffmpeg.so file is 755.
Any help is appreciated.
Thanks in advance.
-
ffmpeg does not apply watermark on first generated frame (wm is applied on all other frames)
3 juillet 2013, par JohnSmithI am generating a bunch of jpgs from a movie, and want the watermark to be applied to all the jpgs. This works fine for all frames, but the first one, and I cannot figure out why.
This is the command I use
ffmpeg -vframes 16 -ss 00:00:01 -i a.mov -t 00:00:17 -r 1 -s 1280x720 -vf "movie=watermark.png,scale=1280:720 [wm];[in][wm] overlay=0:0 [out]" '/tmp/output%d.jpg'
which will give me these files :
output1.jpg
output2.jpg
output3.jpg
output4.jpg
output5.jpg
output6.jpg
output7.jpg
output8.jpg
output9.jpg
output10.jpgwhere they all BUT output1.jpg has got watermark applied.
I cannot figure out why ffmpeg does not apply the watermark on the first one.
I am using ffmpeg 1.2 on debian