Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (78)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

  • ffmpeg extract video unable to play

    30 juin 2021, par Khánh Phạm Đình

    I use ffmpeg to stream video and show up the camera's frame to window in the same time according to current code :

    


    file record_video_and_showup.sh

    


    ffmpeg -f v4l2 -framerate 30 -i $1  -c:v libx264 -preset superfast -crf 18 -pix_fmt yuv420p  -c:a libmp3lame -ac 2 -ar 44100 -b:a 128k -f tee  -map 0:v "$2|[f=nut]pipe:" | ffplay -an pipe:


    


    to record video and show up :

    


    ./record_video_and_showup.sh /dev/video0 test.mp4


    


    finally, we get file test.mp4 but can't play it on app such as vlc. When we open it on google chrome, it can run but the start and end time were incorrect.

    


    Can anyone help me ?

    


  • FFmpeg command overlay watermark speed

    3 septembre 2021, par user892134

    I currently use the following command to add a watermark to 2GB video. This takes around an hour. I'm wondering if i can speed this up in anyway.

    


    ffmpeg -y -i input.mp4 -i watermark.png -filter_complex \"overlay=10:10\" -c:a copy -c:v libx264 -crf 22 -preset ultrafast output.mp4


    


    I'm using preset ultrafast, is there another command which can add a watermark quicker than what i'm using ? If not, how can i change command to show watermark every nth frames that won't show flicker e.g. every 5 frames ?

    


  • How to create videos from images using ffmpeg android ? [on hold]

    30 mai 2016, par Gaju

    Hello every one I want to do these three things :

    1. Create videos form no of images and play as a slide show ?
    2. Merge Audio and Video in video file.
    3. Merge two video ?

    For this I am using ffmpeg command using android ffmpeg library. I uesd many command also create video from images but its duration for images not well i some times finish video in 1 second or sometimes it will show only one images and also sometimes it play slides at a very fast speed. So what i do for this ? and I also tried with Javacv, but not getting any exact solution.