
Recherche avancée
Autres articles (92)
-
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...) -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (12659)
-
mpegvideo_probe : count video and audio pes seperately
8 novembre 2011, par Michael Niedermayermpegvideo_probe : count video and audio pes seperately
-
ffmpeg : create a video from images
8 novembre 2012, par vailenIs it possible to use
ffmpeg
create a video from a set of sequences, where the number does not start from zero ?For example, I have some images [test_100.jpg, test_101.jpg, test_102.jpg, ..., test_200.jpg], and I want to convert them to a video. I tried the following command, but it didn't work (it seems the number should start from zero) :
ffmpeg -i test_%d.jpg -vcodec mpeg4 test.avi
Any advise ?
-
Small pieces of video splitted by ffmpeg are not playing or playing with artifacts
14 novembre 2011, par Rnd_dI'm trying to cut video file into small parts (0.5-5 secs) and encode these parts to h.264/aac with ffmepg. I'm using this cmd :
ffmpeg -i 1.avi -ss 00:05:00 -t 00:00:01,50 -vcodec libx264 -threads 0
-vpre default -acodec libfaac out1.mp4in vlc, some pieces are plaing without video, sound only, other pieces had a video artifacts like this screenshot.
Maybe i didn't use some necessary agruments for ffmpeg ?