
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (74)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)
Sur d’autres sites (10557)
-
Extracting Frames with Original Timestamp with ffmpeg [closed]
5 septembre 2024, par EliseFeuHow can I extract a frame from a video and copy the original timestamp. I understand that in the metadata the date of the file creation is accurately reflected when the frame is extracted. But is there a way to include the timestamp of the original video file as well ?


I used the following command on MacOS to extract frames from a video :


ffmpeg -i input.mov %04d.png


-
matroskadec : parse the channel layout mask for FLAC
26 mai 2014, par Anton Khirnovmatroskadec : parse the channel layout mask for FLAC
It is commonly stored in a vorbiscomment block in codec private data.
- [DH] libavformat/Makefile
- [DH] libavformat/flacdec.c
- [DH] libavformat/matroskadec.c
- [DH] libavformat/oggdec.h
- [DH] libavformat/oggparsecelt.c
- [DH] libavformat/oggparseflac.c
- [DH] libavformat/oggparseogm.c
- [DH] libavformat/oggparseopus.c
- [DH] libavformat/oggparsespeex.c
- [DH] libavformat/oggparsetheora.c
- [DH] libavformat/oggparsevorbis.c
-
Permission denied when trying to save a file with ffmpeg
20 mars 2023, par HoffI'm sending an audio blob to my deno/oak server, and I want to encode it as mp3 using deno_ffmpeg but I'm getting a
Permission denied (os error 13)
error.

With operations like
Deno.rename()
, I am able to save files just fine. Just not when callingffmpeg.save()
.

Here is the code in question :


const body = await context.request.body({ type: 'form-data' })
const data = await body.value.read()
const audioFile = data.files[0]

const ffmpegClass = new ffmpeg({ input: audioFile.filename, ffmpegDir: '.' })
await ffmpegClass.save('./output.mp3')



The last line triggers this error :


PermissionDenied: Permission denied (os error 13)
 at opRun (internal:runtime/js/40_process.js:33:14)
 at Object.run (internal:runtime/js/40_process.js:119:15)
 at FfmpegClass.save (https://deno.land/x/deno_ffmpeg@v3.1.0/src/ffmpegClass.ts:506:26)



This happens despite running the server with
--allow-run
and--allow-write
or even--allow-all


Persission on the root directory are
drwxrw-rw-
(chmod 766).

I'm out of ideas as to what is causing this permissions error, any ideas would be highly appreciated !