
Recherche avancée
Médias (1)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (69)
-
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
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 (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (6866)
-
ENOENT error when trying to access output with ffmpeg + node.js
29 juin 2020, par John GraysonI am running ffmpeg in a lambda function to do some video processing. My problem is the processed video is not being outputted/saved. Therefore, when I try to access the processed video, I get the error :


ERROR Error retrieving video to upload [Error: ENOENT: no such file or directory


Relevant parts of my code :


const { spawnSync } = require("child_process");

exports.handler = async (event, context) => {
 spawnSync(
 "/opt/ffmpeg/ffmpeg",
 [
 "-i",
 `/tmp/myfile`,
 'title="Test 123"',
 `/tmp/processed_file`,
 ],
 { stdio: "inherit" }
 );
}




The conversion file itself does not return any errors, but when I try to access
processed_file
, I get the ENOENT error. I also used anfs.readdir
to see what files actually exist in/tmp
and the only file there wasmyfile
. Therefore, my processed video truly did not save correctly.

Does anyone know what I might be doing wrong here ? Thanks !


-
Cannot access the files in the subdirectories [FFmpeg]
9 décembre 2019, par Ahmet MehmetI try to do a loop job in bash. For example, I want to know some video files’ media info with using ffmpeg using in a loop :
for i in * */* */*/*; do
ffmpeg -i "$i" -hide_banner
doneBut if I want to access up to 10 subdirectories, I must use */ symbol 10 times and this is so bad. Have can do this operation more pratic and pro way :) ?
I tried oguz ismail’s solution and it’s worked, thanks for that. But I have an another problem : This time I tried to take an input file to an output file like this :
find . -c:v copy -c:a copy -i {} \;
But I got an error something like "At least one output file must be specified", because I couldn’t specify an output. How can I do that ?
-
dnxhdenc : fix access outside of image
13 octobre 2015, par Christophe Gisquet