
Recherche avancée
Autres articles (103)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (19713)
-
Send seek command to running ffmpeg instance
12 mai 2022, par Mike VersteegI have created a video player using the ffmpeg libraries, but want to know if the same is possible using ffmpeg.exe and piping, specifically the seeking part. Is it possible to send seek command to a running ffmpeg.exe instance ? Such a command is not present in the help but it does show the 'c' command which can be used to send commands to filters. I cannot find any further documentation however on how to address filters this way, all examples assuming command line parameters, nor if a filter can be used to seek in video.


-
Send seek command to running ffmpeg instance
19 octobre 2015, par Mike VersteegI have created a video player using the ffmpeg libraries, but want to know if the same is possible using ffmpeg.exe and piping, specifically the seeking part. Is it possible to send seek command to a running ffmpeg.exe instance ? Such a command is not present in the help but it does show the ’c’ command which can be used to send commands to filters. I cannot find any further documentation however on how to address filters this way, all examples assuming command line parameters, nor if a filter can be used to seek in video.
-
Running FFMPEGJS in a React Project
23 mars 2020, par beekI’m trying to get https://github.com/ffmpegjs/ffmpeg.js/ running in a Create React App build project.
import {createWorker} from '@ffmpeg/ffmpeg';
When I import the library the build fails with
./node_modules/@ffmpeg/ffmpeg/src/createWorker.js
Module parse failed: Unexpected token (21:4)
You may need an appropriate loader to handle this file type.
| logger,
| progress,
| ...options
| } = resolvePaths({
| ...defaultOptions,I’m not sure how to handle this, or where the problem might be. Is this a Webpack issue ?