Recherche avancée

Médias (91)

Autres articles (53)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

Sur d’autres sites (5915)

  • Clean up some ARM asm issues.

    13 juillet 2011, par Tim Terriberry
    Clean up some ARM asm issues.
    

    1) Allow specification of the section alignment and make the
    default alignment 4 bytes (like the RVCT manual says it should
    be).
    This ensures that linking our ARM asm into a Thumb executable
    won’t get the section placed on a 2-byte boundary.
    2) Add a linker hint to indicate we don’t need an executable stack.
    Otherwise it assumes we do.
    3) Stop building and linking to an (empty) armopts object file.
    This is needed to make 2) work, since we include this file, so
    we can’t add the linker hint at the end of it, and linking in
    just one object without that hint makes the whole library ask
    for an executable stack.

    git-svn-id : http://svn.xiph.org/trunk/theora@18031 0101bb08-14d6-0310-b084-bc0e0c8e3800

    • [DH] lib/Makefile.am
    • [DH] lib/arm/arm2gnu.pl
  • Audio issues when overlaying two videos (ffmpeg)

    4 août 2021, par crashyourtesla

    I'm trying to overlay a short 10 second video on top of a 2 minute video and have the 10 second video show up at the 30 second mark. Here is what I have so far

    


    start = 30
subprocess.run(
    f'ffmpeg -y \
        -i {os.path.join(path, "2minutevideo.mp4")} \
        -i {os.path.join(path, "popup.mov")} \
        -filter_complex \
        "[0:v]setpts=PTS-STARTPTS[v0]; \
        [1:v]setpts=PTS-STARTPTS+{notify_start}/TB[v1]; \
        [v0][v1]overlay=enable=\'between(t, {notify_start}, {notify_start + get_duration(os.path.join(path, "popup.mp4"))})\' [out1]" \
        {render_flags} -r 24 -map 1:a -map [out1] -async 1 \
        {os.path.join(source_folder, "test.mp4")}')


    


    What this does is that popup.mov shows up at 30 seconds and plays for its entire duration. However, I have two issues :

    


      

    1. popup.mov's audio still plays at the beginning. I've tried itsoffset, setting the pts but both seem to not work or have errors.
    2. 


    3. The only audio playing is popup.mov's audio. I would like both 2minutevideo and popup.mov to play audio. Yes, I'm aware it's because -map 1:a only maps the popup's audio to the final video, but I have no idea how to have both audio play. Would I have to mix it ?
    4. 


    


    Thank you

    


  • Révision 111775 : Fix https://core.spip.net/issues/3979 : documentation

    29 septembre 2018, par cedric@yterium.com