
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (112)
-
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 ;
-
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (9980)
-
Video Processing in background with work manager using ffmpeg
24 novembre 2020, par Naseer AttariThe problem comes when during the video processing user closes the application himself from the task manager then its processing stops.


I am working on video file processing in android using
FFMpeg
, which is working perfectly but when I do close the application during processing from task manager then video processing has stopped working even I added all the work in work manager.

@Override 
public Result doWork() {
 shellCommand = new ShellCommand();
 ffmpegBinary = new String[] {
 FileUtils.getFFmpeg(context).getAbsolutePath()
 };
 command = concatenate(ffmpegBinary, command);
 CommandResult commandResult = getCommandResult(command);
 if (command`enter code here`Result.success) {
 onSuccess(videoPath);
 } else {
 onFailure(videoPath);
 }
 }
 //getCommandResult
 private CommandResult getCommandResult(String[] command) {
 try {
 process = shellCommand.run(command, null);
 
 if (process == null) {
 return CommandResult.getDummyFailureResponse();
 }
 checkAndUpdateProcess();
 return CommandResult.getOutputFromProcess(process);
 } catch(Exception e) {} finally {
 Util.destroyProcess(process);
 }
 return CommandResult.getDummyFailureResponse();
 }



As far as I can tell, when the application closes from the background then the parent process destroys it and is destroying all of its sub-process too,
FFMpeg
is using the android process to execute the command and check the video file status during video processing.

Looking forward to hear from you.
Thanks


-
ffmpeg concat video doesn't work on phones
1er janvier 2015, par Виктор ПахомовI`m trying to concat my 2 videos (one of them a watermark video). I created a simple batch script.
SET PATH=%PATH%;D:\downloads\ffmpeg-20141226-git-7c210c4-win32-static\ffmpeg-20141226-git-7c210c4-win32-static\bin
DIR/B/O:N/S D:\videos > D:\filename.txt
for /f %%i in (D:\filename.txt) do (
ffmpeg -i %%i -c copy -acodec libvo_aacenc -vbsf:v h264_mp4toannexb -f mpegts %%i.ts
ffmpeg -i "concat:D:\videomark\copy.ts|%%i.ts" -c copy -acodec libvo_aacenc -b:v 256k -bufsize 256k -vbsf:v aac_adtstoasc D:\gdvideo\%%~ni.mp4
del /f /s /q D:\videos\*.ts
SLEEP 200
)The video works fine on a PC and doesn’t work on my phone (as an example nokiaX2).
What could be the problem ?
-
avcodec/videotoolboxenc : fix setting avctx color_range doesn't work
3 janvier 2024, par Zhao Zhili