
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (57)
-
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 (7991)
-
Make FFmpeg output GIF background transparent
2 juin 2019, par Sahaj RanaI’m using FFmpeg library to save a gif like below :
String commanda="-y -i "+file.getAbsolutePath()**tmp.gif** +" -loop 0 -y "+getEmptyFile("tmp_ch.gif");
executeCmd(command);to make loop indefinitely for further process in an overlay for a video.
The problem is : when I save the gif which previously had transparency is gone after saving it through FFmpeg command.
So, how to bring transparency in output gif.
I have tried--> -filter_complex [0]palettegen=reserve_transparent=on[p];[0][p]paletteuse
--> -gifflags +transdiffbut none of the solutions is working. It would be really helpful if it could be resolved, thanks !
-
How to concatenate bunch of MP4 files using FFmpeg ?
14 octobre 2020, par lapestandI'm trying to concatenate list of mp4 files using FFmpeg. All files are the same length. Difference from ordinary concatenation is I want to split first and last videos and get 2nd and 1st part of them respectively. To be more specific :


Inputs as example :


video_list = [
 "video1.mp4", "video2.mp4", ..., "video150.mp4", "video151.mp4"]

first_video_sec = 345
last_video_sec = 23



Expected output :


(video_list[0] from 345th second + Concatenation of videos in between + videos[len(videos)-1] to 23th second)



as a single mp4 file.


I'm splitting first & last videos and saving their 2nd & 1st parts respectively as an mp4 files then concatenate all videos using concat demuxer. Is there a more efficient way to do this ?


-
Modify video with FFMPEG before uploading to S3
12 juillet 2017, par user774615When a user uploads a video, I want to remove its audio. So in my Laravel code, I have something like this :
// The video from the HTML form
$video = $request->file('video');
// Strip the audio
exec('ffmpeg -y -i ' . <path to="to" file="file"> . ' -an -c copy ' . <new file="file" path="path">);
</new></path>The problem is, I want to upload the final video (without audio) to Amazon’s S3 without saving any part of the video on my local server.
Is there a way to use
$video
as the input for theffmpeg
command and then output the result directly to S3 ? How ?