Recherche avancée

Médias (91)

Autres articles (80)

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

  • Remove obsolete contributing guide.

    20 juillet 2019, par blueimp
    Remove obsolete contributing guide.
  • fate/matroska : Add test for avoiding negative timestamps

    18 janvier 2022, par Andreas Rheinhardt
    fate/matroska : Add test for avoiding negative timestamps
    

    This tests the issue from tickets #4536, #5784 ;
    the output of this test is currently broken.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] tests/fate/matroska.mak
    • [DH] tests/ref/fate/matroska-avoid-negative-ts
  • How to lossless rotate video from Sony A7Rii in FFMPEG avoiding codec error ?

    12 janvier 2020, par Jeffs

    I have a bunch of videos filmed on a Sony A7Rii that are upside down and need to be flipped 180. I’d like to do this lossless and been trying to use the following command :

    ffmpeg -i input.mp4 -c copy -metadata:s:v:0 rotate=180 output.mp4

    I understand this updates orientation information in the metadata of the video file, avoiding the need to reencode. However, it is generating an error relating to the audio codec :

    [mp4 @ 000001db6a69cd80] Could not find tag for codec pcm_s16be in stream #1, codec not currently supported in container
    Could not write header for output file #0 (incorrect codec parameters ?) : Invalid argument
    Stream mapping :
    Stream #0:0 -> #0:0 (copy)
    Stream #0:1 -> #0:1 (copy)

    After some searching, I understand this is expected behaviour because the MP4 container isn’t supposed to have audio encoded with that codec. Unfortunately for me, that is how the Sony A7Rii produces files.

    What FFMPEG command will offer the best work-around ? Ideally I’d not re-encode the audio, but that would be tolerable if there is no other way.

    Thanks !