Recherche avancée

Médias (0)

Mot : - Tags -/flash

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (49)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

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

  • fail to play audio mp2.mxf I get : "failed to find absolute offset of xxxxxx in BodySID 1 - partial file ?"

    29 octobre 2018, par livio

    I have a audio file Op1 Atom From Interplay.
    this is the link :
    https://drive.google.com/open?id=1XB_marJHwHDbK-KJfLcPj6ryQjyIwjo0
    when I try to convert it ffmpeg convert only first 16 minuts and then goes wrong with : "failed to find absolute offset of xxxxxx in BodySID 1 - partial file ?"
    Only potplayer can play it in whole duration, 2h

    Any help is appreciated

  • Android ffmpeg lib has no runnable permission

    30 mai 2014, par peliken

    I have an app that works with ffmpeg library. There are free and full version. Both version
    works fine, but after upload them to google play and then install from it full version begin says "java.io.IOException: Error running exec() Working Directory: null" when I try to use ffmpeg.
    I root my device to check libraries (libffmpeg.so) in app folder and I found that in free version library has
    -rwxr-xr-x permission that is normal but full version library has -rw-r--r-- permission that is read only.
    If I install app without google play from my apk’s all works fine.

  • Output FFMPEG segments to GCS

    28 janvier 2019, par Terrabyte

    Im trying to output an ffmpeg hls stream to google cloud storage after each segment is created or at least after the entire encoding is done. Doesn anyone know how to accomplish this ?

    This is what i have in my bash script :

    $FFMPEG -hide_banner -i "$infile" \
       $PASSVAR \
       -y \
       -codec:v "$VIDEO_CODEC" \
       -codec:a "$AUDIO_CODEC" \
       -threads "$NUMTHREADS" \
       -map 0:v \
       -map 0:a \
       -flags \
       -global_header \
       -f segment \
       -segment_list "$playlist_name" \
       -segment_time "$SEGLENGTH" \
       -segment_format mpeg_ts \
       -g "$key_frames_interval" \
       -keyint_min "$key_frames_interval" \
       $resolution \
       $bitrate \
       $FFMPEG_ADDITIONAL \
       $FFMPEG_FLAGS \
       "$OUTPUT_DIRECTORY/$output_name" | gsutil -m mv "$OUTPUT_DIRECTORY/$output_name" gs://bucket-vod-example
    }

    does anyone know how to output the files to gsutls as it’s being encoded ? I can make the output the mounted storage point of google cloud storage but encoding directly to it is extremely slow so if possible is there way to encode locally then transfer as it’s being encoded ?