
Recherche avancée
Médias (1)
-
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
Autres articles (34)
-
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 (...) -
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...) -
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 (5287)
-
Generate video thumbnails without opening file explorer on Linux [closed]
20 juillet 2024, par jaantamyI noticed that thumbnails of videos are generated when I open my file explorer (Thunar).
I guess it uses external package such as tumbler and/or ffmpegthumbnailer
But I don't know how to check the code of tumbler to execute it by myself from my command line terminal, without opening my Thunar file explorer...
Any idea ?
I know I could use the command ffmpeg but it asks to choose when to do the screenshot in the video with the statement -ss, but I don't want to choose it arbitrary, I prefer when tumbler chooses the right moment (maybe the middle of the video ?) to do it.
Thanks for your help


ffmpeg -i -ss 00:00:30 -frames:v 1 -s 120x240 output_file.jpg


-
How do I get ffmpeg to encode all files in one directory to another directory ? My directory names and filenames all have spaces and periods in them
26 avril 2023, par VihungI am using the Terminal on a Mac.


Per another question, I am doing


for i in ./01.\ Original\ Recording/*.m4a; do ffmpeg -i "$i" -b:a 64k ./02.\ Compressed/"$(basename $i)"; done



(as you can see, there are spaces in the directory names as well as in the filenames)


The output files are being put in the right directory (
02.\ Compressed
).

Unfortunately, they come out named as
01.?Original?.m4a
(first part of directory name and rest of file name with spaces substituted by?
)

-
ffmpeg bash script to generate thumbnails for all videos in a folder
17 novembre 2017, par smokeyoneI found this bash script via google and would like to modify it slightly to generate jpg thumbnails from a desktop folder call indie. All my mts files are named by their exact time taken and ffmpeg is installed.
This is the original script :
for f in *.mov; do
ffmpeg -y -i "$f" -f image2 -ss 10 -vframes 1 -an "${f%.mov}.jpg";
doneI changed it to this :
for f in Desktop/indie/*.mts; do
ffmpeg -y -i "$f" -f image2 -ss 10 -vframes 1 -an "${f%.mts}.jpg";
doneI am hoping someone can tell me where I have gone wrong (my terminal output just says no such file).
Thanks