Recherche avancée

Médias (0)

Mot : - Tags -/performance

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

Autres articles (48)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

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

  • ffmpeg how to copy one frame for certain duration

    19 août 2018, par user889030

    Am trying to add image Overlay to video it specific duration for specific time period for which i want that video frame to be copied for specific time so that video feels like stationary and image overlay have animated effect on that specific frame .

    ffmpeg -y -i small.mp4 -i google.png -filter_complex "overlay=enable='between=(t,1,4)':x=30+t*28:y=50"  output.mp4

    the above command insert google.png to video small.mp4 between 1 to 4 sec it x=30 and y =50 where x is added with t * 28 , which create 28 pixel shift it x-axis

    currently am using this command which works ok but the problem is i do no know how to copy the frame for certain duration so that image overlay have animation effect on it