Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (57)

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

  • How to add silent data when no audio stream is flowing

    29 décembre 2020, par Edqe

    This is what I'm currently doing : How to insert silence pcm data when there is no data piping in

    


    Since fluent ffmpeg can use ffmpeg flags, is there a way to put silent data when no actual audio stream is received.

    


    Example :
    
/ represents real audio data
    
- represents silent
    
/////////////////-----///////----//////////
    
Receive audio    cut  data   cut data
    
From example above, put silent data on cut when no real data is received (I hope that explains a bit clearer)

    


    I found this discussion, does this work for the example above ? If so, how can I implement it ?

    


    Thanks in advance !

    


  • Possible to copy PCR/PTS/DTS data between TS files ?

    19 avril 2024, par muraliv

    I've 2 h264/aac stream TS files (say a.ts and b.ts) that have same duration and packet numbers. However PCR/PTS/DTS data of their audio/video stream packets are different. How do I copy PCR/PTS/DTS data from a.ts to b.ts using ffmpeg or other tools without actually overwriting the audio and video frames data ? Ideally want to do this without re-encoding.

    


  • Generate FFMPEG Waveform Data

    30 septembre 2015, par samchoi

    Given a video file (e.g. test.mkv), is it possible to output the data points used to create a waveform using ffmpeg (or any other tool) ?

    I’m looking to create a file that maps audio level to time, so that I can parse the data. Most of the examples I am finding, output an image.

    The closest I’ve gotten is generating raw binary data with :
    ffmpeg -i test.mkv -ac 1 -filter:a aresample=8000 -map 0:a -c:a pcm_s16le -f data -