
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (92)
-
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. -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (5723)
-
reading videos in matlab not working (the following codec(s) to be installed on your system)
20 février 2016, par Ehab AlBadawyWhen I try to read a video in matlab
v = VideoReader('t.avi');
I get this error :The file requires the following codec(s) to be installed on your system:
video/x-msvideoand some time it needs
mpeg
codec when I try to load mpeg or mp4 video.I found someone referring to rename libstdc++.so.6.0 to libstdc++.so.6.0.10 but I found that I already have libstdc++.so.6.0.13
I’m using matlab 2013 with archlinux.
Update : I get this warring in the terminal when trying to read a video
Failed to load plugin '/usr/lib/gstreamer-0.10/libgstpango.so':
/usr/lib/libharfbuzz.so.0: undefined symbol: FT_Face_GetCharVariantIndex -
syntax error in shell_exec php
1er avril 2018, par Gerag2I’m stumped seems everything is right don’t know why it gives an error
<?php
echo "Starting ffmpeg...\n\n";
echo shell_exec("ffmpeg -i /var/www/vhosts/site.com/httpdocs/Videos/*.* -i "$i" -c:v libx264 -crf 24 /var/www/vhosts/site.com/httpdocs/Videos/Output/"${i%.*}.mp4 null >/dev/null 2>/var/log/ffmpeg.log &");
echo "Done.\n";
?>and yes this codes runs in terminal
for i in *.*; do ffmpeg -i "$i" -c:v libx264 -crf 24 n/"${i%.*}.mp4"; done
-
How to create a .command file with unity with execute previlages ?
30 janvier 2017, par EhabSherifHello everyone how do you do,
In my app I’m trying to use ffmpeg through a batch file, windows works great writing .bat files, however when I write .command files on MAC the files don’t open and tells me that I don’t have permission.
Also when I run the command
chmoc u+x [.command File Path]
through the terminal the file works..Knowing that when I create a new text file with the command and rename it to .command it works fine.
I write the command file in unity using File.WriteAll, is there any other way for writing the file that gives the previlage needed ? knowing that I run the batch file using a process in unity.
Thank You,