
Recherche avancée
Autres articles (61)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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 ) (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
Sur d’autres sites (8861)
-
Convert file.ts to file.acc with ffmeg
8 mars 2021, par Md EnayatI'm new at this point, could you tell me to convert file.ts to file.acc through FFmpeg and using this below command to convert from my command prompt.


ffmpeg.exe -i file.ts -acodec copy file.acc



and I'm getting this as error :


[NULL @ 000002693d53d380] Unable to find a suitable output format for 'file.acc'
file.acc: Invalid argument



Thank you


-
Convert file.ts to file.aac with ffmeg
8 mars 2021, par Md EnayatI'm new at this point, could you tell me to convert file.ts to file.aac through FFmpeg and using this below command to convert from my command prompt.


ffmpeg.exe -i file.ts -acodec copy file.aac



and I'm getting this as error :


[NULL @ 000002693d53d380] Unable to find a suitable output format for 'file.aac'
file.aac: Invalid argument



Thank you


-
Java JAR file runs on local machine but missing file on others
22 avril 2022, par john pearThe JAR file consists of the ffmpeg.exe file and it can run normally on my machine without any problems. However, if I try to run it on another computer it would tell me that
java.io.IOException: Cannot run program "ffmpeg.exe": CreateProcess error=2,The system cannot find the file specified
from the stacktrace. The way I imported it was

FFMpeg ffmpeg = new FFMpeg("ffmpeg.exe"); //in res folder

...
//ffmpeg class
public FFMPEG(String ffmepgEXE) {
 this.ffmepgEXE = ffmepgEXE;
}