Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (72)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

  • 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


    


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


    


  • avcodec/evc_ps : check valid range for a few more elements

    19 juin 2023, par James Almer
    avcodec/evc_ps : check valid range for a few more elements
    

    Should prevent overreads on non spec comformant input.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/evc_ps.c