
Recherche avancée
Médias (3)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (98)
-
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. -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (11928)
-
ffprobe : add option to control optional fields display
1er mai 2021, par Gyan Doshi -
Unable display blob produced by ffmpeg
16 avril 2021, par Hikigaya JieMy version of ffmpeg for frontend app :


- 

- "@ffmpeg/ffmpeg" : "^0.9.7"




My goal is to have the uploaded video, writes video frames to image files and
I have tried the following code.


import { createFFmpeg, fetchFile } from '@ffmpeg/ffmpeg';
import { useState } from 'react';

const ImageFrame: React.FC = () => {
 const [videoSrc, setVideoSrc] = useState('');
 const [images, setImages] = useState('');
 const ffmpeg = createFFmpeg({
 log: true,
 });

 const doSomething = async () => {
 await ffmpeg.load();
 ffmpeg.FS('writeFile', 'output%%-%d_%Y-%m-%d_%H-%M-%S.jpg', await fetchFile(videoSrc));
 await ffmpeg.run('-i', videoSrc, '-vf', 'fps=1', 'output%%-%d_%Y-%m-%d_%H-%M-%S.jpg');
 const data = ffmpeg.FS('readFile', 'output%%-%d_%Y-%m-%d_%H-%M-%S.jpg');
 const url = URL.createObjectURL(new Blob([data.buffer], { type: 'image/jpg' }));

 setImages(url);
 };
 const onChange = (event: any) => {
 setVideoSrc(event.target.files[0]);
 };
 return (
 <div>
 <div>
 <div style="{{">
 <input accept="'video/mp4'" type="'file'" title="'Upload'" />
 <button>Start</button>
 </div>
 </div>

 <div>
 {images && <img src="http://stackoverflow.com/feeds/tag/{images}" alt="'frame'" width="{250}" style='max-width: 300px; max-height: 300px' />}
 </div>
 </div>
 );
};

export default ImageFrame;




This is the output I get for displaying the blob.




This is the log from ffmpeg, for some reason it always says "No such file or directory"




-
xvfb-run Could not get a valid VA display org.freedesktop.DBus.Properties.Get
28 mars 2021, par JintorWhen I try xvfb-run google-chrome I get error about
Could not get a valid VA display


Here the full command :


/usr/bin/xvfb-run --listen-tcp --server-num 49 
--server-args="-ac -screen 0 1920x1080x24 -noreset" google-chrome 
--kiosk --start-maximized --test-type --no-sandbox --disable-infobars 
--disable-gpu --disable-popup-blocking --window-size=1920x1080 
--window-position=0,0 --no-first-run --ignore-certificate-errors 
--disable-dev-shm-usage --autoplay-policy=no-user-gesture-required 
--simulate-outdated-no-au='Tue, 31 Dec 2099 23:59:59 GMT' google.com



the Errors


[82942:82942:0327/210500.657801:ERROR:vaapi_wrapper.cc(573)] Could not get a valid VA display
[82906:83000:0327/210501.005473:ERROR:object_proxy.cc(621)] Failed to call method: org.freedesktop.DBus.Properties.Get: object_path= /org/freedesktop/UPower: org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.UPower was not provided by any .service files
[82906:83000:0327/210501.005734:ERROR:object_proxy.cc(621)] Failed to call method: org.freedesktop.UPower.GetDisplayDevice: object_path= /org/freedesktop/UPower: org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.UPower was not provided by any .service files
[82906:83000:0327/210501.006408:ERROR:object_proxy.cc(621)] Failed to call method: org.freedesktop.UPower.EnumerateDevices: object_path= /org/freedesktop/UPower: org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.UPower was not provided by any .service files



•••• What I want to to do : create a browser (server-num x) and ffmpeg -f x11grab -i 127.0.0.1:49


In Centos I'm able to do it, but in other linux I get those errors


Why and how to fix this ? (if this is fixable ?) (or changing attributes....)