
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)
-
ffmpeg fails in crontab running as root
21 décembre 2020, par Steve LloydI am trying to convert a video from mov to mp4 from a crontab.


/usr/bin/ffmpeg -y -nostdin -hide_banner -loglevel panic -i "/var/www/sample.mov" -vcodec h264 -acodec mp3 "/var/www/sample.mp4"



When I run it from a terminal it works fine. From a crontab I get the following errors. I have already tried adding "export LD_LIBRARY_PATH=/usr/lib/ && /usr/bin/ffmpeg" without success. Any help would be appreciated.


[h264_v4l2m2m @ 0x4e8290] Could not find a valid device
[h264_v4l2m2m @ 0x4e8290] can't configure decoder
Stream mapping:
 Stream #0:0 -> #0:0 (h264 (h264_v4l2m2m) -> h264 (libx264))
 Stream #0:1 -> #0:1 (aac (native) -> mp3 (libmp3lame))
Error while opening decoder for input stream #0:0 : Permission denied



-
FFMPEG on Ubuntu with cpp resize/set width & height for AVFrame
17 juin 2023, par SarahLyCurrent program :
Getting AV Frame and converting it to OpenCV Mat.
Need to change the frame size, please see the image in attached file.
Need to capture full screen 1920x1080


terminal output
[mpeg4 @ 0x5565aaaf4580] AVFrame.format is not set
[mpeg4 @ 0x5565aaaf4580] AVFrame.width or height is not set



Frame capture




-
ffmpeg says "No such file or directory" [closed]
10 octobre 2020, par srvnk

ffmpeg says no such file or directory but the file exists. I want to extract a frame/thumbnail from that video (pre1.mp4). I have installed ffmpeg by
sudo snap install ffmpeg
. My ubuntu version is 18.04.4 LTS. I also triedffmpeg -ss 00:00:01 -i pre1.mp4 -vframes 1 -q:v 2 output.jpg
but same error.

I am using php to generate the thumbnail. I tried functions -
exec
,shell_exec
andsystem
to run the command but same error. After getting error I tried to run the command in terminal but the error is same.