
Recherche avancée
Autres articles (60)
-
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 (...) -
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. -
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 (7243)
-
how to compile the latest ffmpeg into a lib that can be used in my windows application [closed]
12 avril 2013, par chinayini download the latest ffmpeg ,then in windows i used the mingw+msys to compiled it to a lib ,but the source code had so many .h,.cpp ,i don't know how to use the lib in my windows application . when i compiled my windows application it always come with an error can not find xxx .h and so on .so if someone who can tell me that how to make a lib and use it in my windows application.i am a new one in ffmpeg ,this problem make me feel so bad. so i come here for an answer . thank you very much . best regards.
-
FFmpeg on windows 7, encode video in mp4 for HTML 5 video fail
14 avril 2013, par manonthemoonI try to encode my video with FFmpeg, to convert to mp4.
But the video doesn't work on html 5. I don't understand why.I found this command on the web and I tried it :
ffmpeg.exe -i wildlife.wmv -b 1500k -vpre slow -vpre baseline -vcode libx264 \ -g 30 wildlife.mp4
But it fails, and I have this error :
File for preset 'slow' not found
I check the folder "presets" and the preset is on the folder, so I don't understand why it's telling me this error.
I tried with the complete path, it fails too. -
Encode a movie with Unicode filename in Windows using Popen
15 avril 2013, par TetsuI want to encode a movie through IO.popen by ruby(1.9.3) in windows 7.
If the file name contains only ascii strings, encoding proceed normally.
But with unicode filename the script returns "No such file or directory" error.
Like following code.#-*- encoding: utf-8 -*-
command = "ffmpeg -i ü.rm"
IO.popen(command){|pipe|
pipe.each{|line|
p line
}
}I couldn't find whether the problem causes by ffmpeg or ruby.
How can fix this problem ?