Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (73)

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

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

Sur d’autres sites (14784)

  • Save only distinct images from video using FFmpeg

    3 septembre 2018, par Stef_MOE

    I would like to save only distinct images from a video (.mp4).
    This video is a video capture of an application installation process, for example.
    One way could be to just save every frame from the video and then manually delete duplicates.

    Is there another way to fix this automatically ? (Preferably using FFmpeg)

  • How to extract frame from video and save it into memory ?

    11 septembre 2012, par Alrick

    I tried extract frame and save it as output.jpg On server side :

    f = "ffmpeg -vframes 1 -y -ss "+time+" -i ./media/somemov.mp4 ./media/output.jpg"
    subprocess.call(f, shell=True)

    And on client side used :

    getImage(noOfFrame);  //send the request for call the ffmpeg function from views.py

    document.getElementById("main").style.backgroundImage="url(http://localhost:8000/media/output.jpg#"+ new Date().getTime();+")";

    But its too slow. DIV displays always the old image becose creates image takes a long time.
    for example i want image no 3 and DIV has no 2, i want image no 4, and div has no 3.

    Is there any way how to extract frame from video (by ffmpeg) and send it into Python without creation the output.jpg file ?

    I want get the image data and send it from server (django) to webpage and set it as background-image of any DIV.

    Is the "pure data sending" solution better then mine ?

    Thanks for help.

  • FFMPEG - stream download + resize + HVEC convert in one statement ?

    6 mars 2021, par Armitage2k

    I have a collection of 30 to 60 minutes PORTRAIT videos which I download via the below ffmpeg statement. That part works fine, but given that the resolution of the videos is quite high, it results in approx. 1,3 GB mp4 files.

    


    Once downloaded, I usually convert the video to 720p resolution which brings it down to approx. 500 MB per video, and then run another HVEC x265 compression which alas results in 250MB - 350MB sizes.

    


    Since its quite tedious to do all this manually, I was wondering if there is a FFMPEG statement / command I can use that achieves all of this in one go while downloading ?

    


    Below the commands I currently use.

    


    Thank you

    


    Download : ffmpeg -i http://somewebsite.com/path/to/playlist.m3u8 -c copy -bsf:a aac_adtstoasc L2_60min_vinyasa_vicky.mp4

    


    Convert : ffmpeg -i INPUT.mp4 -c:v libx265 -c:a copy -x265-params crf=25 OUTPUT.mkv