Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (67)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

  • Flutter | Retrieve ffprobe data

    23 juin 2021, par YourLogarithm

    I'm using flutter_ffmpeg package, specifically I'm trying to retrieve information regarding the chapter marks from a .m4b file which is an audiobook. By using this method :

    


    _flutterFFmpeg.executeWithArguments(['-i', widget.book.path, '-print_format', 'json', '-show_chapters', '-loglevel', 'error']);


    


    I was able to output this data as a JSON map in the console. The thing is, I need to use this data inside my application, is there a way to get access to those chapters as a variable using another approach, or maybe to access this data directly from the console log printed by the method shown earlier.

    


  • Receiving Raw MPEG2-TS data received over RTSP(RTP) via FFMPEG

    8 septembre 2014, par AGP

    I am trying to read raw MPEG2-TS data packets(188 byte) from an RTSP(RTP) stream. I can not figure how to code a client that opens stream and reads raw data. For other video formats and without raw data handling, it is much easier in ffmpeg.

    How can i code this type of client in ffmpeg ?

    Thanks

  • Recording transport stream to file in ffmpeg

    9 juillet 2020, par Neil Bernard

    I'm streaming a dvb-t mux and I want to dump it to file using ffmpeg on another PC.

    


    Here is the command :

    


    ffmpeg -i rtp ://192.168.1.93:20000 -acodec copy -vcodec copy d34_tw.ts

    


    For some reason though its only saving 1 video and 1 audio random pid ? not the whole TS ?

    


    Thoughts ?

    


    Neil