
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (86)
-
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 (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
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 (...)
Sur d’autres sites (13513)
-
Subtitles won't show on video after burning [closed]
9 octobre 2023, par draI'm trying to burn subtitles into a video using ffmpeg js and ffmpeg wasm in my NextJS app.
the issue is, after running the subtitles just won't show.
my code is as follows


await ffmpeg.exec([
 '-i',
 `${fileName}`,
 '-vf',
 "subtitles=subtitles.srt:force_style='Fontname=Helvetica,PrimaryColour=&HFF00'",
 `${fileName}_final.mp4`,
])



from the terminal it works as expected


tried to run it on
.srt
and.ass
files too, with and without font specification for both file types

-
Application slower on jar than eclipse building with ant
28 novembre 2019, par Caio FariasHello guys, i’m facing a silly problem.
I’m using the javacv library to capture streaming videos. On the eclipse i run my application and the delay time it is only the response of rtsp. But when i generate a jar file(using ant, a build.xml) and run on terminal (sudo java -jar app.jar) takes a 4 min to start grabbing frames.
I run the flag verbose on java(java -verbose - jar) and the delay time its because his loading the libs ffmpegs(so files).
Anyone had any idea how to improve and minimize the time ?
-
Runtime.getRuntime().exec() is not running the ffmpeg command on centos
23 décembre 2013, par Karn_wayI am doing as below on centos machine
String fileName = "ffmpeg -i file:///home/xyz %d.png";
Runtime.getRuntime().exec(fileName);xyz is mp4 file and i want that to create number of different Image frames
when i am running by java application as above it is not working however if i try to do so directly on terminal it is working, please suggest as what might be wrong ?