Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (62)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • 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 (...)

  • List of compatible distributions

    26 avril 2011, par

    The 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 (...)

Sur d’autres sites (8975)

  • Use ffmpeg to cut out the first chapter

    7 janvier 2017, par UnR34L

    I’m trying to remove the first chapter of a TV show rip. The idea is to have something similar to netflix, where the first episode will show the intro then the consecutive episodes don’t.

    I’ve been getting the chapter time with ffprobe then doing it manually with this

    for %%A IN (*.mp4) DO ffmpeg -ss <chaptertime> -i "%%A" -vcodec copy -acodec copy "tmp.mp4" &amp;&amp; DEL "%%A" &amp;&amp; RENAME "tmp.mp4" "%%A"
    </chaptertime>

    How do I pass the first chapter time code value so ffmepg knows where to seek to ?

    Also hoping to use the same the same value to offset the subtitles so they align after the cut.

    Note : The machine I’ve doing the cutting on is windows but I can use my FreeBSD server if that’s easier.

  • ffmpeg add text every second with enable between filter

    12 janvier 2023, par HUNG
    ffmpeg -y -i public/media/vid1.mp4 -vf "drawtext=text=&#x27;1&#x27;:x=w-tw-50:y=50:fontcolor=black:fontsize=380:enable=&#x27;between(t,1,2)&#x27;,drawtext=text=&#x27;2&#x27;:x=w-tw-50:y=50:fontcolor=black:fontsize=380:enable=&#x27;between(t,0,1)&#x27;" -codec:a copy public/media/vid1-1.mp4&#xA;

    &#xA;

    I want to add a number every second in a video. I googled and the syntax should like the above. However, only the text within between(t,0,1) can be shown and the value is keeping shown for the whole video duration. But I expected it should only show one second.

    &#xA;

    I expected between(t,1,2) can show the text from 00:00:01-00:00:02. However, it never show.

    &#xA;

  • ffmpeg with opengl_es on Android

    21 juin 2012, par ksharp

    This is driving me crazy. I do know how to make ffmpeg decode videos&make opengl show contents on Android .But I can never make them together. FFmpeg keeps decoding frames while OpenGL has its own circle.How to make them co-work/sync ? Well,I mean OpenGL can show every frame right after decoded by ffmpeg ? Can I just call the decode methods in OpenGL onDrawFrame() method(by jni) ?What about the audiotrack then ?
    Thx !