Recherche avancée

Médias (91)

Autres articles (101)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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, par

    Talk 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, par

    La 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 Ratan

    I 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.

    enter image description here

  • Combine several flv in one video

    31 juillet 2013, par user2638776

    I 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 Alex

    I have several chunks in folder.

    0001.mp4
    0002.mp4
    0003.mp4
    ...
    0112.mp4

    I 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.mp4

    but 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 directory

    After 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.mp4

    but 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.