
Recherche avancée
Autres articles (64)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
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 (...) -
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 (...)
Sur d’autres sites (10861)
-
String command for watermarking a video using FFmpeg in Android Studio
11 octobre 2017, par djacFollowing is the ffmpeg function which accepts string command, coded in Android Studio. Can you give Sample/Reference string command for watermarking a video for this function (in Android Studio) ?
For example :
Input video file absolute path is "inputvideo".
Watermark text is "stackoverflow".
Output video file absolute path is "outputvideo".private void execFFmpegBinary(final String[] command) {
try {
ffmpeg.execute(command, new ExecuteBinaryResponseHandler() {
@Override
public void onFailure(String s) {
Log.d(TAG, “FAILED with output : ” + s);
}
@Override
public void onSuccess(String s) {
Log.d(TAG, “SUCCESS with output : ” + s);
//Perform action on success
}
}
@Override
public void onProgress(String s) {
Log.d(TAG, “progress : ” + s);
}
@Override
public void onStart() {
Log.d(TAG, “Started command : ffmpeg ” + command);
}
@Override
public void onFinish() {
Log.d(TAG, “Finished command : ffmpeg ” + command);
}
});
} catch (FFmpegCommandAlreadyRunningException e) {
}
} -
String command for text-watermarking a video using FFmpeg in Android Studio
11 octobre 2017, par djacFollowing is the ffmpeg function which accepts string command, coded in Android Studio. Can you give Sample/Reference string command for text-watermarking a video for this function (in Android Studio) ?
For example :
Input video file absolute path is "inputvideo".
Watermark text is "stackoverflow".
Output video file absolute path is "outputvideo".private void execFFmpegBinary(final String[] command) {
try {
ffmpeg.execute(command, new ExecuteBinaryResponseHandler() {
@Override
public void onFailure(String s) {
Log.d(TAG, “FAILED with output : ” + s);
}
@Override
public void onSuccess(String s) {
Log.d(TAG, “SUCCESS with output : ” + s);
//Perform action on success
}
}
@Override
public void onProgress(String s) {
Log.d(TAG, “progress : ” + s);
}
@Override
public void onStart() {
Log.d(TAG, “Started command : ffmpeg ” + command);
}
@Override
public void onFinish() {
Log.d(TAG, “Finished command : ffmpeg ” + command);
}
});
} catch (FFmpegCommandAlreadyRunningException e) {
}
} -
Watermarking in video using ffmpeg
14 octobre 2017, par Monisha VpFollowing is for video watermarking
include "vendor/autoload.php";\n<br />
$logger="";<br />
$ffmpeg = \FFMpeg\FFMpeg::create([
'ffmpeg.binaries' => 'C:\ffmpeg\bin\ffmpeg.exe', // the path to the FFMpeg binary<br />
'ffprobe.binaries' => 'C:\ffmpeg\bin\ffprobe.exe', // the path to the FFProbe binary<br />
]);<br />
$video = $ffmpeg->open('sample.mp4');<br />
$video<br />
->filters()<br />
->watermark('watermark.png', array(<br />
'position' => 'absolute',<br />
'x' => 1180,<br />
'y' => 620,<br />
));<br />
$video<br />
->save(new FFMpeg\Format\Video\X264(), 'export-x264.mp4');<br />
print "ssddd";But it return error
Fatal error : Uncaught exception
’Alchemy\BinaryDriver\Exception\ExecutionFailureException’ with
message ’ffmpeg failed to execute command C :\ffmpeg\bin\ffmpeg.exe -y
-i sample.mp4 -vcodec libx264 -acodec libfaac -b:v 1000k -refs 6 -coder 1 -sc_threshold 40 -flags +loop -me_range 16 -subq 7 -i_qfactor 0.71 -qcomp 0.6 -qdiff 4 -trellis 1 -b:a 128k -vf "movie=watermark.png [watermark] ;[in][watermark] overlay=1180:620 [out]" -pass 1
-passlogfile "C :\Users\Lap215\AppData\Local\Temp\ffmpeg-passes59e25ad8c4dd5xwrpl/pass-59e25ad8c5327"
export-x264.mp4’ in
C :\xampp\htdocs\test_html\vendor\alchemy\binary-driver\src\Alchemy\BinaryDriver\ProcessRunner.php:100
Stack trace : #0
C :\xampp\htdocs\test_html\vendor\alchemy\binary-driver\src\Alchemy\BinaryDriver\ProcessRunner.php(72) :
Alchemy\BinaryDriver\ProcessRunner->doExecutionFailure(’C :\ffmpeg\bin\f...’)1 C :\xampp\htdocs\test_html\vendor\alchemy\binary-driver\src\Alchemy\BinaryDriver\AbstractBinary.php(209) :
Alchemy\BinaryDriver\ProcessRunner->run(Object(Symfony\Component\Process\P
in
C :\xampp\htdocs\test_html\vendor\php-ffmpeg\php-ffmpeg\src\FFMpeg\Media\Video.php
on line 228.Please help me