Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (52)

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

  • Maximum MOV file supported audio / video length

    27 octobre 2020, par AKHILASH TP

    Thanks in advance.

    


    We use libav for MOV muxing. Below is the audio and video format used. Can you help us with our questions ?

    


    Video format - h264
Audio format - 4 channel, 24bit, 48KHz PCM

    


    Queries :

    


      

    1. Can you please guide us to find the maximum length supported for a MOV file ?
    2. 


    3. Does libav have any specific limitation related to the maximum duration for muxing a MOV file ?
    4. 


    


  • avformat/mca : clip timestamp when seeking into acceptable range

    10 septembre 2020, par Paul B Mahol
    avformat/mca : clip timestamp when seeking into acceptable range
    
    • [DH] libavformat/mca.c
  • How to create bash script with ffmpeg to flip a dir of vids 180, then stitch together without losing vid length

    25 septembre 2022, par Maude Rozencrance's Cat

    I'm trying to make a bash script in linux to flip a bunch of AVI files 180 degrees, then stitch them together without losing the length of the vids. My code works, but it truncates each vid and makes 60 10sec vids, which should be 600 seconds of video, down to about 11 seconds.

    


    I removed the transpose to flip the vids and now I'm getting the correct vid length. So it works, but I have to flip the vid in the video player.

    


    >videos.txt

files=DSCF*.AVI

for f in $files
do
    #make list of vids, copy to videos.txt
    echo "file '$f'" >> videos.txt;
    echo "duration 10.0" >> videos.txt;
    
done

#stitch all vids together
ffmpeg -f concat -safe 0 -i videos.txt -c copy bigvid.AVI