Recherche avancée

Médias (1)

Mot : - Tags -/publishing

Autres articles (101)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

Sur d’autres sites (8433)

  • Why must FFmpeg's af_atempo filter be in the [0.5, 2.0] range ?

    19 juin 2018, par Theo Tian

    When I tried to use this filter with FFmpeg, I found the audio tempo argument must be in this range [0.5, 2.0].

    But I don’t understand why the audio tempo filter’s argument has to be in this range.

    Why does it have to be in this range ?

  • ffmpeg2theora parameter out of range

    12 mai 2014, par greg

    I’m trying to convert a mp4 file to ogg with ffmpeg2theora and I have a lot of "paramater out of range" :

    [NULL @ 0x633740] Value 4707126720094797824.000000 for parameter 'probesize' out of range
    [NULL @ 0x633740] Value 4707126720094797824.000000 for parameter 'analyzeduration' out of range
    [NULL @ 0x633740] Value 4697254411347427328.000000 for parameter 'indexmem' out of range

    something like 50 lines of that then :

    [mov,mp4,m4a,3gp,3g2,mj2 @ 0x633740] decoding for stream 0 failed
    [mov,mp4,m4a,3gp,3g2,mj2 @ 0x633740] Could not find codec parameters (Video: h264 (avc1 / 0x31637661), 440 kb/s)
    [mov,mp4,m4a,3gp,3g2,mj2 @ 0x633740] decoding for stream 1 failed
    [mov,mp4,m4a,3gp,3g2,mj2 @ 0x633740] Could not find codec parameters (Audio: aac (mp4a / 0x6134706D), 44100 Hz, stereo, s16, 128 kb/s)

    Am I missing something ? codecs maybe ?

    TIA

    greg

  • FFMPEG - How to trim video to length of 200 ms

    26 décembre 2018, par David C

    I am trying to trim a video with clips as short as 100 ms or 200 ms length (so I can merge them together later). They always end up at least about 1 second. I guess there is a minimum length, but i wonder if it is possible to still manage to get shorter videos.

    I have tried this on Windows with the most recent version of ffmpeg :

    ffmpeg -i video.mp4 -ss 00:00:01.700 -t 00:00:01.715 output.mp4

    I expect a video of the length of around 200 ms. Alternatively maybe there is a way to trim multiple clips and merge them directly into an output file.

    Thanks !