Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (75)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (9138)

  • NReco ffmpeg library error

    19 janvier 2016, par agurodriguez

    I’m using NReco.VideoConverter for a video converting application. Now I’m trying to replace the audio in the source video for an mp3 track. I’m using this snippet from the official site : http://www.nrecosite.com/video_converter_net.aspx but I receiving this error :

    audio.mp3 : Invalid data found when processing input (exit code : 1)

    var ffmpeg = new NReco.VideoConverter.FFMpegConverter();
    ffmpeg.ConvertMedia("video.mp4", null, "output_video.mp4", null, new ConvertSettings() {
     AudioCodec = "copy", VideoCodec = "copy",
     CustomInputArgs = String.Format(" -i \"{0}\" ", "audio.mp3"),
     CustomOutputArgs = " -map 0 -map 1",
    });

    I tried with different audio files but still the same scenario.

    Hope you can help me !
    Regards

  • avcodec/prores_aw : change src pix_fmt and alpha description

    8 novembre 2018, par Martin Vignali
    avcodec/prores_aw : change src pix_fmt and alpha description
    

    use b64a as src pix fmt (doesn't seems to have an impact on decoding)
    but it's the value use by official encoder

    • [DH] libavcodec/proresenc_anatoliy.c
  • Limit file size in FFmpeg

    26 novembre 2019, par Arete

    The official documentation for FFmpeg says :

    -fs limit_size (output)

    Set the file size limit, expressed in bytes. No further chunk of bytes is written after the limit is exceeded. The size of the output file is slightly more than the requested file size.

    This is very confusing. If the file size is slightly more than the requested file size then I have the following questions :

    1. What determines how much more (than the requested file size) the file will consume ?

    2. How much more will the file exceed the requested file size ?

    3. Is there any way to set the file size exactly ?

    4. What is the point of having the -fs if it does not actually work ?