
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (77)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Les notifications de la ferme
1er décembre 2010, parAfin d’assurer une gestion correcte de la ferme, il est nécessaire de notifier plusieurs choses lors d’actions spécifiques à la fois à l’utilisateur mais également à l’ensemble des administrateurs de la ferme.
Les notifications de changement de statut
Lors d’un changement de statut d’une instance, l’ensemble des administrateurs de la ferme doivent être notifiés de cette modification ainsi que l’utilisateur administrateur de l’instance.
À la demande d’un canal
Passage au statut "publie"
Passage au (...) -
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 (10888)
-
Extract first frame of multi video streams video
15 avril 2020, par RaduI am curious about how to use FFmpeg in order to extract the first frame of the first video stream from a multi-video stream file. 
What I have so far is :



ffmpeg -i {mediaFile} -ss 0 -map 0:v -vframes 1 -f image2 firstFrame.jpeg
.


I am not sure about the
-map
part. How can be certain that I work on the first video stream ? Is there a way to first filter streams by codec type, then select the first and then extract the frame ?


Thanks.


-
How to edit video (cut some scenes) without increasing the video's size
18 février 2016, par 123iamking[Introduction]
I have a video : Input.mp4 - length : 29 min 6 sec - size : 120 MB
I use Microsoft Movie Maker 2012 (Movie Maker is included in the Windows Essentials 2012 program suite), to cut some boring scenes and keep the cool scenes and I get the video : Output.mp4 - length : 15 min 22 sec - size : 155 MB.
And it’s take a long time to create the Output.mp4 and the size is ridiculously increased. I can’t use this kind of software anymore, I need to create a new software to serve my purpose.
[Question]
Is there anyway with C# .Net to simply cut and merge video without increasing the video’s size and have to be fast ?
[What I have tried]
I intend to use ffmpeg to cut the clip and merge the clip and I found something about cut video here , but the console said something about "Timestamps are unset in a packet for stream 0. This is deprecated and will stop working in the future." - should I still use this ?
Should I use ffmpeg or there’s better way to do this.
-
trimming video using ffmpeg corrupts output video stream
6 décembre 2022, par I ZI am using ffmpeg to cut up a long video into sections. Using this command :


ffmpeg -i "long.mp4" -ss 00:38:25 -to 01:01:11 -c copy "section.mp4" 



I extracted a couple of different consecutive sections and they are fine. But then I cut out another one and its video stream is bad : just a few static frames are shown. Removing
-c copy
did not help. What am I doing wrong ? TIA