
Recherche avancée
Autres articles (48)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
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. -
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 (4582)
-
Gphoto2 live view with nikon dslr5100 pipes to ffplay for 3 seconds then dies
30 avril 2020, par Will SimpsonI am trying to use my DSLR camera with OBS.
I have installed Gphoto2 on mac and have managed to get a connection to the camera.
Now I am trying to get some kind of live view window that I can then capture in OBS.



The problem is when I use the following command, the camera makes like it is about to go into movie mode, the window opens and then the image begins streaming for usually about 4 seconds before it freezes.



gphoto2 --port usb:250,006 --capture-movie --stdout | ffplay -i pipe:0 -vcodec mjpeg




I specify the port because I also have my iphone camera in another window in OBS



Does anyone have any suggestions ?


-
Installing ffmpeg ios libraries armv7, armv7s, i386 and universal on xCode 6.1 Mac with 10.9
5 février 2015, par arashagaI have tried many of the solution such as "Installing ffmpeg ios libraries armv7, armv7s, i386 and universal on Mac with 10.8" to compile FFMPEG libraries on MAC for i386 an iphone but i constantly get and error. I guess it could b my xcode and clang version. I have already installed the latest command tools as well. Any help would be appreciated.
-
Ffmpeg error : Rotate thumbnail image of video
9 septembre 2016, par user3418135Iam using ffmpeg to generate thumbnail image from a video .mov (uploaded from iPhone)
This is PHP code on live server to generate :
public static function generateThumbnail($inputUrl, $outputUrl) {
$cmd = "ffmpeg -i ".$inputUrl." -ss 00:00:01 -vframes 1 -s 200x200 ".$outputUrl;
exec($cmd);
}On live server (CentOS 6.5) : If I run this cmd in terminal, it working. But if I run by calling above function php then thumbnail image will be rotated -90 degrees.
If i run two cases on localhost (LinuxMint 17.2) then all ok.
Thanks all.