
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (74)
-
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 (9907)
-
Revision fa3483e5800eb1cc8280c5eb46ba4e0446e5dfb3 : SPIP 1.9.2, ereg/split obsolètes en PHP 5.3 git-svn-id : ...
3 janvier 2010, par Committo,Ergo:sum — LogSPIP 1.9.2, ereg/split obsolètes en PHP 5.3 git-svn-id : svn ://trac.rezo.net/spip/branches/spip-1.9.2@14826 caf5f3e8-d4fe-0310-bb3e-c32d5e47d55d
-
split the video into five chunks using ffmpeg and batch script
21 janvier 2019, par RJFFI want to split videos into five chunks using ffmpeg
the first chunk represents 20% of the whole video
the second chunk represents 40% of the whole video
the third chunk represents 60% of the whole video
the fourth chunk represents 80% of the whole videothe fifth chunk represents 100% of the whole video
I write the algorithm but I do not know how to write the batch code :
1. find the duration of the video
2. store the duration in variable
3. divided the duration by 5
4. split the videoI want a batch script that takes the duration of the video then store the value of duration in the variable
this is how I can take the duration of the video
ffmpeg -i C:\video-splitter-master\1.avi 2>&1 | grep "Duration"| cut -d ' ' -f 4 | sed s/,// | sed 's@\..*@@g' | awk '{ split($1, A, ":"); split(A[3], B, "."); print 3600*A[1] + 60*A[2] + B[1] }'
but how I can store the duration value in the variable ?
can you please help me ?
-
Split videos with ffmpeg in batch mode ?
11 avril 2014, par user3524742I use this code to split video after 5s in batch mode but when I click .bat file, cmd disappears immediately.
for %%i in ("*.mp4") do ffmpeg -i "%%i" -t 00:00:05 -codec copy "%~ni.mp4"
pauseHow to fix it ? Thanks !