Recherche avancée

Médias (1)

Mot : - Tags -/swfupload

Autres articles (63)

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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (8609)

  • how to download video from un***demy ?

    2 mai 2022, par SINGH

    how to download video from unacademy.com ???

    


    it has video player with slides.
i can find slides in pdf using dev tools.but
during watching it has text drawn on pdf using digitizer but in slides i get only images.

    


    instructor video can be downloaded .but .its of no use without slides....

    


    it streams slides and instructor video..
video is encrypted........

    


    how can i download instructor video +slides with text drawn on it as video file...
help..

    


    note : i want to store for offline for personal use only as my subscription is about to expire

    


  • FFMPEG + HDFS - how to use ffmpeg libraries (.libs) to get file IO in and out of HDFS ?

    15 décembre 2015, par eric frazer

    I’m programming in C, C++, and need ffmpeg to read and write files to HDFS. I know ffmpeg can decompress from packets I already have, but I don’t know how to get it to read from the header, or get it to write to my stream. I don’t look forward to cracking open the source for ffmpeg and writing it myself. It’d be nice if ffmpeg had some ability to read/write from something that looks like an IStream. Has anybody done this ? I also know about mounting the HDFS system on my local machine, but that’s a last resort. Note this question IS specific, and it is about programming, not soliciting advice. Need insight into ffmpeg’s .LIB API and how to get it to read/write from an object I point it to.

  • Up-mix Stereo to 5.1 with FFMPEG, filtering each channel [closed]

    2 octobre 2020, par Jim

    I developed this to transform stereo to 5.1 :

    


    ffmpeg -i d:\man.mp4 -c:v mpeg2video -b:v 8M -maxrate 12M -bufsize 4M -filter_complex "pan=5.1|FL=FL|FR=FR|FCcode>

    


    Note : this also does an mp4 to mpeg2 conversion

    


    The issue is that the dialog is on all the channels and it doesn't sound like real 5.1. What I would like to do is apply a bandpass filter to just the center channel to focus on the dialog piece. I then want to apply an opposite notch filter to the rest of the channels to focus on everything but the dialog.

    


    Been doing a lot of searching and coming up empty. Many thanks for a nudge in the right direction.