Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (40)

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

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

Sur d’autres sites (4878)

  • How to convert ffmpeg command to Python code

    12 septembre 2020, par mpo

    I would like to convert the command ffmpeg -i input.mp4 -i input.wav -c:v copy -map 0:v:0 -map 1:a:0 -c:a aac -b:a 192k output.mp4 to a Python function. How can I do this ?

    


  • hls : fix min DTS code, try #2

    21 août 2012, par Michael Niedermayer

    hls : fix min DTS code, try #2

  • Code must find all MP4 files within subdirectory to compress using ffmpeg

    22 juin 2019, par ellipsical

    I have a drive with a lot of MP4 files which are tough to go through folder by folder and compress.

    I’m trying to make a script that runs in terminal that will open a designated folder, find all .mp4 files in the subfolder, and compress the files using specs I designate with ffmpeg. Obviously, the output files should be much lower in size if done right. I’m drafting a code which I have an idea about below but I’m not too good with BASH and/or PERL.

    for f in $(find ../ -iname '*.avi'); do
     n=$(echo $f|sed -e 's/.avi/_cbr.mp4/i');
     echo "ffmpeg [options] -i $f $n";
    done

    output :

    ffmpeg [options] -i ../1hourjob/videncode/sound10s.avi ../1hourjob/videncode/sound10s_cbr.mp4
    ffmpeg [options] -i ../1hourjob/videncode/t003.avi ../1hourjob/videncode/t003_cbr.mp4
    ffmpeg [options] -i ../ffmpeg/Masha.avi ../ffmpeg/Masha_cbr.mp4
    ffmpeg [options] -i ../ffmpeg/window.avi ../ffmpeg/window_cbr.mp4

    I’m wondering if I can even make some sort of GUI for this too. I feel a bit lost.