
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (68)
-
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
Problèmes fréquents
10 mars 2010, parPHP et safe_mode activé
Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...)
Sur d’autres sites (9896)
-
FFMPEG not recognising -crf or -qp
23 avril 2021, par BenjI am trying to make a losslessly encoded mp4 video out of png images.


I have a folder of images named
frame-%d.png
.

ffmpeg -i frame-%d.png -framerate 30 -c:v libx264 -crf 0 output.mp4


FFMPEG rejects crf and qp with the message :


ffmpeg -i frame-%d.png -framerate 30 -c:v libx264 -crf 0 output.mp4
ffmpeg version N-97327-g05039c1334 Copyright (c) 2000-2020 the FFmpeg developers
 built with Apple clang version 11.0.0 (clang-1100.0.33.17)
 configuration: 
 libavutil 56. 42.102 / 56. 42.102
 libavcodec 58. 78.102 / 58. 78.102
 libavformat 58. 42.100 / 58. 42.100
 libavdevice 58. 9.103 / 58. 9.103
 libavfilter 7. 77.101 / 7. 77.101
 libswscale 5. 6.101 / 5. 6.101
 libswresample 3. 6.100 / 3. 6.100
Unrecognized option 'crf'.
Error splitting the argument list: Option not found



Why is crf unavailable ?


-
VLC can read mp3 but FFMPEG "could not find codec parameters"
9 septembre 2021, par Be Chiller TooI'm trying to process some audio with PyDub, but encountered an error, that seems to stem from ffmpeg, so I investigated, tried to process the audio file directly with ffmpeg and I reproduced the error :


PS C:\Users\Me\AppData\Local\Temp\16311759704613> ffmpeg -i .\input.mp3 out.wav
ffmpeg version 2020-12-12-git-5148740e79-essentials_build-www.gyan.dev Copyright (c) 2000-2020 the FFmpeg developers
 built with gcc 10.2.0 (Rev5, Built by MSYS2 project)
 configuration: --enable-gpl --enable-version3 --enable-static --disable-w32threads --disable-autodetect --enable-fontconfig --enable-iconv --enable-gnutls --enable-libxml2 --enable-gmp --enable-lzma --enable-zlib --enable-libsrt --enable-libssh --enable-libzmq --enable-avisynth --enable-sdl2 --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxvid --enable-libaom --enable-libopenjpeg --enable-libvpx --enable-libass --enable-libfreetype --enable-libfribidi --enable-libvidstab --enable-libvmaf --enable-libzimg --enable-amf --enable-cuda-llvm --enable-cuvid --enable-ffnvcodec --enable-nvdec --enable-nvenc --enable-d3d11va --enable-dxva2 --enable-libmfx --enable-libgme --enable-libopenmpt --enable-libopencore-amrwb --enable-libmp3lame --enable-libtheora --enable-libvo-amrwbenc --enable-libgsm --enable-libopencore-amrnb --enable-libopus --enable-libspeex --enable-libvorbis --enable-librubberband
 libavutil 56. 62.100 / 56. 62.100
 libavcodec 58.115.102 / 58.115.102
 libavformat 58. 65.100 / 58. 65.100
 libavdevice 58. 11.103 / 58. 11.103
 libavfilter 7. 93.100 / 7. 93.100
 libswscale 5. 8.100 / 5. 8.100
 libswresample 3. 8.100 / 3. 8.100
 libpostproc 55. 8.100 / 55. 8.100
[mpegts @ 00000220e533d3c0] changing packet size to 188
[mpegts @ 00000220e533d3c0] changing packet size to 204
[mpegts @ 00000220e533d3c0] changing packet size to 192
[mpegts @ 00000220e533d3c0] changing packet size to 188
[mpegts @ 00000220e533d3c0] changing packet size to 204
[mpegts @ 00000220e533d3c0] changing packet size to 192
[mpegts @ 00000220e533d3c0] changing packet size to 188
[mpegts @ 00000220e533d3c0] changing packet size to 204
[mpegts @ 00000220e533d3c0] changing packet size to 192
.\input.mp3: could not find codec parameters
PS C:\Users\Me\AppData\Local\Temp\16311759704613>



I tried to listen to the audio, VLC can open the file :




And Audacity can too :




What can I do to process this file with ffmpeg ?


-
How can I add chapters to .mp4 files using a python script ? [duplicate]
7 mars 2023, par RandomIs there an easy way to add chapters (i.e. : sections with titles) to .mp4 files using a python script ?


For example, the script could process a 3-minutes video and label the first minute as "Beginning", the second minute as "Middle", and the last minute as "End".


The only solution (link) I stumbled upon so far involves using a ffmpeg command on the command line to extract the original ffmetadata from the video file before appending the chapters to it and updating the video with it.


However, I would like the process to be automated using a python script (instead of having to use the command line each time I have to process a video).