
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (62)
-
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 ) (...) -
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 (6005)
-
how to Add mp3 file in to video file using ffmpeg
20 mai 2020, par Rahane Akoliyai want to Add mp3 file in to video file using ffmpeg,i refer many link but not find answer.anyone can help me ?



final String[] command= ("-i "+ Constant.getTempVideo(VideoEditorActivity.this, false) +" -i " +Constant.Song_Path+ " -c copy -map 0:0 -map 0:1 -map 1:0 -shortest " + videoOutputPath).split(" ");




i try this command but give error.


-
cant upload a .webm file after recording
14 octobre 2017, par Syed Abdur Rehman KazmiI kinda seem to stuck on something. I am missing something i dont know. I have uploaded a lot of files but somehow when i recorded this file via my laptop camera browser and try to upload it.. it doesnt.. I am also using ffmpeg to convert it.
Laravel 5.4
vuejs
ffmpegThese are the tools involved the error i am getting is the file doesnt exist in local temp folder. ( i have checked it IS NOT there i dont understand why )
This is the code i am using :
$input = $request->only('video' , 'url' , 'blob');
$input['file'] =$request->file('blob');
$ffmpeg = FFMpeg::create([
'ffmpeg.binaries' => 'C:/FFmpeg/bin/ffmpeg.exe',
'ffprobe.binaries' => 'C:/FFmpeg/bin/ffprobe.exe'
]);
$video = $ffmpeg->open($input['file']);
$video
->filters()
->resize(new Dimension(320, 240))
->synchronize();
$video
->frame(TimeCode::fromSeconds(10))
->save('frame.jpg');
$video
->save(new Video\X264(), 'export-x264.mp4')
->save(new Video\WMV(), 'export-wmv.wmv')
->save(new Video\WebM(), 'export-webm.webm');This is the error :
Unable to probe C :\Users\KAZMI\AppData\Local\Temp\php4155.tmp
ffprobe failed to execute command "C :/FFmpeg/bin/ffprobe.exe" C :\Users\KAZMI\AppData\Local\Temp\php4155.tmp -show_streams -print_format json
and this is the input data :
array:4 [ "video" => "video_7192228.webm" "url" => "blob:http://localhost:8080/c319e0bf-7217-4916-90b6-c9cba800b7da" "blob" => UploadedFile {#421 -test: false -originalName: "blob" -mimeType: "video/webm" -size: 0 -error: 0 #hashName: null path: "C:\Users\KAZMI\AppData\Local\Temp" filename: "php8B7D.tmp" basename: "php8B7D.tmp" pathname: "C:\Users\KAZMI\AppData\Local\Temp\php8B7D.tmp" extension: "tmp" realPath: "C:\Users\KAZMI\AppData\Local\Temp\php8B7D.tmp" aTime: 2017-10-14 14:20:24 mTime: 2017-10-14 14:20:24 cTime: 2017-10-14 14:20:24 inode: 0 size: 0 perms: 0100666 owner: 0 group: 0 type: "file" writable: true readable: true executable: false file: true dir: false link: false linkTarget: "C:\Users\KAZMI\AppData\Local\Temp\php8B7D.tmp" } "file" => UploadedFile {#421}]
-
Copy live stream without overwrite previous file
2 février 2020, par PanagiotisWhen I login I automatically start a script, that downloads a radio stream with ffmpeg.
ffmpeg -i \
http://139.162.14.151:9090 \
-c copy output.mp3But each time it is asking me to overwrite the file. I want it to automatically create a new file without overwriting the previous one.