Recherche avancée

Médias (91)

Autres articles (51)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • 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

Sur d’autres sites (7856)

  • Cut every .mp4 in folder by half with ffmpeg

    14 novembre 2022, par c00kieRaptor

    I have a folder with 200 mp4-files and I need to cut the last half of every one of them. So if a video is 140 seconds I need to cut out the last 70 seconds so that the resulting output is the preceding 70 seconds.

    


    I would assume the loop would look a bit like this :

    


    for i in *.mp4; do
    let A=$(ffprobe -v error -show_entries format=duration -of default=noprint_wrappers=1:nokey=1 $i)
    let A=${A%.*}
    let A=$A/2
    ffmpeg -sseof $A -i $i ${i%.mp4}
done


    


    But I get "syntax error : invalid arithmetic operator (error token is ".246848")" from the first 'let'. This corresponds to the float of the video duration.
For all I know there could be many other mistakes with my loop

    


    Also some files have spaces and special characters if that matters.

    


  • Revision 75d77e36db : Fix the all intra modes mask constant. The new constant expands to 0x3fc00808.

    28 mai 2014, par Alex Converse

    Changed Paths :
     Modify /vp9/encoder/vp9_rdopt.c



    Fix the all intra modes mask constant.

    The new constant expands to 0x3fc00808.

    Change-Id : Ib5109e4faf035fe0402b59f8a8d2e412628b9276

  • 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