Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (58)

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

  • 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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (11198)

  • avcodec/vaapi : mask unused bits in bitplane_present.value

    25 février 2018, par Jerome Borsboom
    avcodec/vaapi : mask unused bits in bitplane_present.value
    

    Due to the union construct, unused bits in bitplane_present.value might
    be uninitialized even when the used bits are all set to a value.
    Masking the unused bits prevents spurious true values when all used
    bits are unset, e.g. skipped pictures.

    Signed-off-by : Jerome Borsboom <jerome.borsboom@carpalis.nl>

    • [DH] libavcodec/vaapi_vc1.c
  • How to extract duration time of online videos listed in a text file

    22 août 2022, par Ginofalaci

    I need to check the duration of thousand of videos online. I m trying to get this from a text file containing the urls of the videos.

    &#xA;

    I have those two commands that are working great with one url, but i don't find out how to get it work with a list within a file text.

    &#xA;

    fmpeg -i My.url 2>&amp;1 | grep "Duration"| cut -d &#x27; &#x27; -f 4 | sed s/,//&#xA;

    &#xA;

    or this :

    &#xA;

    ffmpeg -i my.url 2>&amp;1 | grep Duration | sed &#x27;s/Duration: \(.*\), start/\1/g&#x27;&#xA;

    &#xA;

    im trying :

    &#xA;

    fmpeg -i listurls.txt 2>&amp;1 | grep "Duration"| cut -d &#x27; &#x27; -f 4 | sed s/,//&#xA;

    &#xA;

    or this :

    &#xA;

    ffmpeg -i listurls.txt 2>&amp;1 | grep Duration | sed &#x27;s/Duration: \(.*\), start/\1/g&#x27;&#xA;

    &#xA;

    my file text is like this :

    &#xA;

    myurl1.m3u8
    &#xA;myurl2.m3u8
    &#xA;myurl3.m3u8
    &#xA;myurl4.m3u8
    &#xA;myurl5.m3u8

    &#xA;

    I've also tried :

    &#xA;

    file 'myurl1.m3u8'
    &#xA;file 'myurl2.m3u8'
    &#xA;file 'myurl3.m3u8'
    &#xA;file 'myurl4.m3u8'
    &#xA;file 'myurl5.m3u8'

    &#xA;

    but it doesn't work.

    &#xA;

    Also some videos might not be online anymore, but still referenced, so it would give no result, but I would like if possible to have the result "0" than nothing, it will be much easier to use the results afterwards.

    &#xA;

    (awk, sed, mediainfo, exiftool, any will be good, ) Thanks in advance.

    &#xA;

  • I cannot find bin folder fmpeg when downloading from official site

    13 janvier 2017, par Moudiz

    I want to run and use ffmpeg I download it from this site https://ffmpeg.org/

    and I coudlnt find bin folder as in the tutorials they mentioned i need bin to execute the command

    enter image description here

    but if i download from site https://ffmpeg.zeranoe.com/builds/ i find bin folder , so what is the difference between the 2 ?

    enter image description here