
Recherche avancée
Autres articles (94)
-
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
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 -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (7615)
-
Cut, concatenate, and re-encode to h265 with ffmpeg
30 mars 2022, par Make42I have two h264 videos that I would like to cut (each), concatenate and re-code into h265 - all with ffmpeg. How can I achieve that, considering that the following two approaches do not work ?


First approach


I tried


ffmpeg -ss 00:00:05.500 -to 00:12:06.200 -i video1.mp4 \
 -ss 00:00:10.700 -to 01:43:47.000 -i video2.mp4 \
 -filter_complex "[0:v][0:a][1:v][1:a] concat=n=2:v=1:a=1 [outv] [outa]" \
 -map "[outv]" -map "[outa]" \
 -c:v libx265 -vtag hvc1 -c:a copy \
 final.mp4



but get the error message




Streamcopy requested for output stream 0:1, which is fed from a complex filtergraph. Filtering and streamcopy cannot be used together.




Second approach


Alternatively, I created the file
cutpoints.txt
with the content

file video1.mp4
inpoint 5.5
outpoint 726.2
file video2.mp4
inpoint 600.7
outpoint 6227.0



and ran the command


ffmpeg -f concat -safe 0 -i cutpoints.txt -c:v libx265 -vtag hvc1 -c:a copy final.mp4



but then the video does not start exactly at 5.5 seconds, which is not surprising since




inpoint timestamp


This directive works best with intra frame codecs, because for non-intra frame ones you will usually get extra packets before the actual In point and the decoded content will most likely contain frames before In point too.




-
FFMPEG with moviepy
5 novembre 2023, par Shenhav MorI'm working on something that concatenate videos and adds some titles on through moviepy.


As I saw on the web and on my on pc moviepy works on the CPU and takes a lot of time to save(render) a movie. Is there a way to improve the speed by running the writing of moviepy on GPU ? Like using FFmpeg or something like this ?


I didn't find an answer to that on the web, so I hope that some of you can help me.
I tried using
thread=4
andthread=16
but they are still very very slow and didn't change much.

My CPU is very strong (i7 10700k), but still, rendering on moviepy takes me for a compilation with a total of 8 minutes 40 seconds, which is a lot.


Any ideas ?Thanks !
the code doesnt realy matter but :


def Edit_Clips(self):

 clips = []

 time=0.0
 for i,filename in enumerate(os.listdir(self.path)):
 if filename.endswith(".mp4"):
 tempVideo=VideoFileClip(self.path + "\\" + filename)

 txt = TextClip(txt=self.arrNames[i], font='Amiri-regular',
 color='white', fontsize=70)
 txt_col = txt.on_color(size=(tempVideo.w + txt.w, txt.h - 10),
 color=(0, 0, 0), pos=(6, 'center'), col_opacity=0.6)

 w, h = moviesize = tempVideo.size
 txt_mov = txt_col.set_pos(lambda t: (max(w / 30, int(w - 0.5 * w * t)),
 max(5 * h / 6, int(100 * t))))

 sub=txt_mov.subclip(time,time+4)
 time = time + tempVideo.duration

 final=CompositeVideoClip([tempVideo,sub])

 clips.append(final)

 video = concatenate_videoclips(clips, method='compose')
 print("after")
 video.write_videofile(self.targetPath+"\\"+'test.mp4',threads=16,audio_fps=44100,codec = 'libx264')



-
How to convert 7sec Video to Gif Android
21 août 2014, par Donnie IbiyemiAm making an app that convert shot video clips to Gif. i was wondering if there was a libary that directly converts videos to gifs on the Fly on Android.
I’ve tried to extract all the frames of the video and encode them into a gif but am only getting the the first frame of the video. my code is below :
public static final int GIF_DELAY_BETWEEN_FRAMES = 100;
public static final float SPEED_RATIO = 1.1f;
Uri videoFileUri=Uri.parse(mOutputFile.toString());
FFmpegMediaMetadataRetriever retriever = new FFmpegMediaMetadataRetriever();
retriever.setDataSource(mOutputFile.getAbsolutePath());
rev = new ArrayList<bitmap>();
MediaPlayer mp = MediaPlayer.create(RecorderActivity.this, videoFileUri);
int millis = mp.getDuration();
for(int i=1000000;itest.gif");
outStream.write(generateGIF());
outStream.close();
}catch(Exception e){
e.printStackTrace();
}
public byte[] generateGIF() {
ByteArrayOutputStream bos = new ByteArrayOutputStream();
AnimatedGifEncoder encoder = new AnimatedGifEncoder();
encoder.setDelay((int)(GIF_DELAY_BETWEEN_FRAMES * (1 / SPEED_RATIO)));
encoder.start(bos);
for (Bitmap bitmap : rev) {
encoder.addFrame(bitmap);
}
encoder.finish();
return bos.toByteArray();
}
</bitmap>Please help me guys...thanks