
Recherche avancée
Médias (91)
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (101)
-
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 -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)
Sur d’autres sites (6208)
-
ffmpeg subtitle background
30 janvier 2019, par RatanI am trying to add subtitles to a video in marathi language and to make it user friendly i have added a background to subtitle however there are some black lines coming in the background. Please help me in removing those lines.
ffmpeg -i output_mp4.mp4 -vf "subtitles=transcript_srt.srt: force_style='OutlineColour=&H80000000,BorderStyle=3,Outline=1,Shadow=1'" -c:a copy output_srt.mp4
This is the command i have used.
-
Combine several flv in one video
31 juillet 2013, par user2638776I am recording several video on server using flash plugin and FMS (Flash Media Server). I would like to combine them into one big video which then can been played later. I am looking in to ffmpeg for solution as my requirements are to generate video via a php script. I would love to hear some options or get some guide lines.
-
How to merge videos by avconv ?
31 août 2013, par AlexI have several chunks in folder.
0001.mp4
0002.mp4
0003.mp4
...
0112.mp4I would like to join them into full video.mp4
I tried to use
avconv -i "concat:`ls -l /root/chunk/ | awk 'BEGIN {ORS="|"} { print $9 }'`" \
-c:v copy -c:a copy /root/test/2.mp4but I have error
concat:|0000.mp4|0001.mp4|0002.mp4|0003.mp4|0004.mp4|0005.mp4|0006.mp4|\
0007.mp4|0008.mp4|0009.mp4|0010.mp4|0011.mp4|0012.mp4|0013.mp4|0015.mp4|\
0016.mp4|0017.mp4|0018.mp4|0019.mp4|: No such file or directoryAfter I tried
avconv -i "concat:/root/chunk/0000.mp4|/root/chunk/0001.mp4|/root/chunk/0002.mp4" \
-c:v copy -c:a copy /root/test/2.mp4but only one input file was catched to output.
How to merge all chunks from folder into full video ?
I don't want to use ffmpeg or other. Avconv only.