Recherche avancée

Médias (1)

Mot : - Tags -/publishing

Autres articles (93)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

Sur d’autres sites (7376)

  • MPEG-TS, Android and FFMPEG

    31 janvier 2013, par STeN

    I am receiving the MPEG-TS (MPEG transport stream) packets with the multiplexed H.264 video and AAC audio streams. I need to be able to show the audio and video on the Android phone. My assumption is that I need :

    • MPEG-TS de-multiplexer
    • AAC decoder
    • H.264 decoder
    • Synchronize the audio and video playback

    Assuming that I am right then (in Android 2.x) MPEG-TS de-multiplexer is not part of the OS and must be ported, both AAC and H.264 decoder are part of the Android OS, but I am not sure if they have interface, which allows passing the data in buffers and if they allow mutual timing synchronization. In the worst case those components must be ported here as well.

    Can you give me some advices where to start ? I was thinking about the FFMPEG porting. Are there any other ways ?

    Regards,
    STeN

  • Flutter - Trim 0.5 second off end of mp3 upon copy to server without re-processing the entire file ?

    25 mars 2021, par Meggy

    Here's how I'm uploading an mp3 audio file to my server ;

    


    onPressed: () async {
   String _createid = await uploadAudio(
   audiotitle: audiotitle,
   currentaudioid: audioWidgetProvider.currentaudioid,
   filepath: audioWidgetProvider.filepath);
   }  


    


    Given that I'm basically copying the mp3 file from my mobile phone to the server is there a way I can trim 0.5 seconds off the end of the file before uploading it to the server ?

    


    Barring that is there a way I can trim 0.5 seconds off the end on the Debian 10 server-side ?

    


    Can I do this without re-processing the whole file ? What's the most efficient way ?

    


  • Convert a JPG file to MP4 video using Node

    7 juin 2018, par Radostin Slavov

    I need to convert a JPG to 3-4sec long mp4 using NodeJS. Everywhere I search I find information about ffmpeg but nothing works for me. Currently I’m trying with fluent-ffmpeg. Here is my code :

    let ffmpegPath = require('@ffmpeg-installer/ffmpeg').path
    let ffmpeg = require('fluent-ffmpeg')
    ffmpeg.setFfmpegPath(ffmpegPath)
    let command = ffmpeg()
    command
     .input(imagePath)
     .inputFPS(1 / 5)
     .outputFPS(30)
     .videoCodec('libx264')
     .videoBitrate(1024)
     .size('640x?')
     .loop(5)
     .noAudio()
     .on('end', () => {
       resolve(saveTo)
     }).save(saveTo)

    I’m open for other NodeJs solutions as well. I’ve tried VideoShow library but it throws errors when an image is being uploaded from Android Phone.