
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (20)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
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. -
Les statuts des instances de mutualisation
13 mars 2010, parPour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)
Sur d’autres sites (4041)
-
BisonCam NB Pro not working correctly in VMware Xubuntu 16.04
29 août 2016, par bot1131357I am trying to access my webcam (BisonCam, NB Pro) on a VMWare Xubuntu 16.04 virtual machine using ffmpeg, but it’s not working. Here’s what I did :
$ ./ffmpeg -f v4l2 -i /dev/video0 ~/Dev/out.avi
ffmpeg version N-81392-ga453bbb Copyright (c) 2000-2016 the FFmpeg developers
built with gcc 5.4.0 (Ubuntu 5.4.0-6ubuntu1~16.04.2) 20160609
configuration: --pkg-config-flags=--static --enable-shared --enable-pic --enable-libvpx --prefix=/home/ytan/Dev/build-x64
libavutil 55. 29.100 / 55. 29.100
libavcodec 57. 54.100 / 57. 54.100
libavformat 57. 47.101 / 57. 47.101
libavdevice 57. 0.102 / 57. 0.102
libavfilter 6. 52.100 / 6. 52.100
libswscale 4. 1.100 / 4. 1.100
libswresample 2. 1.100 / 2. 1.100The webcam LED turned on, but the console remained like that for as long as I let it. When I press ’Ctrl + c’, the following message is returned :
Input #0, video4linux2,v4l2, from '/dev/video0':
Duration: N/A, bitrate: 88473 kb/s
Stream #0:0: Video: rawvideo (YUY2 / 0x32595559), yuyv422, 1280x720, 88473 kb/s, 6 fps, 6 tbr, 1000k tbn, 1000k tbc
File '/home/ytan/Dev/out.avi' already exists. Overwrite ? [y/N] y
[avi @ 0x1f4a680] Using AVStream.codec to pass codec parameters to muxers is deprecated, use AVStream.codecpar instead.
Output #0, avi, to '/home/ytan/Dev/out.avi':
Metadata:
ISFT : Lavf57.47.101
Stream #0:0: Video: mpeg4 (FMP4 / 0x34504D46), yuv420p, 1280x720, q=2-31, 200 kb/s, 6 fps, 6 tbn, 6 tbc
Metadata:
encoder : Lavc57.54.100 mpeg4
Side data:
cpb: bitrate max/min/avg: 0/0/200000 buffer size: 0 vbv_delay: -1
Stream mapping:
Stream #0:0 -> #0:0 (rawvideo (native) -> mpeg4 (native))
Could not write header for output file #0 (incorrect codec parameters ?): Immediate exit requested
Exiting normally, received signal 2.At this point I figured that somehow ffmpeg isn’t able to read the frames from the webcam. Just to double-check, I tried running cheese to see if the issue is not exclusive to ffmpeg, and I was right. Here is a screenshot.
Can someone help me with this ?
-
php 5.3.13 ffmpeg Windows 7 64bit Not working wamp server [closed]
28 juin 2018, par Waqas AhmedI am facing following issue during installing the ffmpeg on the windows 7 64-bit machine using WampServer Version 2.2 with php 5.3.13 and ffmpeg extension 32-Bit
I didn’t find ffmpeg ext. 32-bit..
PHP Startup : Unable to load dynamic library ’c :/wamp/bin/php/php5.3.13/ext/php_ffmpeg.dll’ - %1 is not a valid Win32 application.
-
ffmpeg trimming video with -ss and -t working only with audio
16 février 2014, par user3197974I am trying to extract 5 seconds out of a TS stream using the command below :
ffmpeg -ss 780 -t 5 -i "D:\TS\stream_457.ts" -map 0:17 -map 0:7 -qscale 6 -y -async 1 "D:\1_O.ts"
The trimming seems to work on the audio track, the output file plays only 5 seconds of audio but the video starts at second 780 and continues until the end of the stream. So i end up with 5 seconds of audio and 37 seconds of video.
How can i trim both audio and video ?
Thanks