Recherche avancée

Médias (0)

Mot : - Tags -/objet éditorial

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

Autres articles (108)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

Sur d’autres sites (17609)

  • Revision cf2a65bd80 : Renamed FindLibYAML.cmake to better reflect project name.

    3 mai 2012, par Marc Noirot

    Changed Paths :
     Modify /Makefile.am


     Add /cmake/modules/FindLibYAML.cmake
    (from /cmake/modules/FindLibYaml.cmake
    :6cd0e7aa7f9bc82ff1e144247cae69f96d9fcfb7)
     Delete /cmake/modules/FindLibYaml.cmake


     Modify /src/CMakeLists.txt



    Renamed FindLibYAML.cmake to better reflect project name.

  • avcodec/nvenc : replace custom FIFOs with AVFifos

    20 mai 2016, par Andrey Turkin
    avcodec/nvenc : replace custom FIFOs with AVFifos
    

    Signed-off-by : Timo Rothenpieler <timo@rothenpieler.org>

    • [DH] libavcodec/nvenc.c
  • Merge video and audio using ffmpeg and download immediately in django

    29 janvier 2024, par Suresh Chand

    I have video and audio file which is to be merge and download immediately. I have written some code but it will start download after merged. I want when user hit the url, then it will start merging and downloading immediately so that user don't have to wait for it.

    &#xA;

    video_url = "./video.mp4"&#xA;audio_url = "./audio.mp4"&#xA;&#xA;output_filepath = &#x27;./merged.mp4&#x27;&#xA;&#xA;try:&#xA;    process = subprocess.Popen([&#xA;        "ffmpeg",&#xA;        "-i", video_url,&#xA;        "-i", audio_url,&#xA;        "-c:v", "copy",&#xA;        "-c:a", "copy",&#xA;        "-f", "mp4",&#xA;        "-movflags", "frag_keyframe&#x2B;empty_moov",&#xA;        "pipe:1"&#xA;    ], stdout=subprocess.PIPE)&#xA;&#xA;    def generate_stream():&#xA;        while True:&#xA;            data = process.stdout.read(1024)&#xA;            if not data:&#xA;                break&#xA;            yield data&#xA;&#xA;    response = StreamingHttpResponse(generate_stream(), content_type="video/mp4")&#xA;    response[&#x27;Content-Disposition&#x27;] = &#x27;attachment; filename="stream.mp4"&#x27;&#xA;    return response&#xA;&#xA;except subprocess.CalledProcessError as e:&#xA;    return HttpResponse("Error: {}".format(e), status=500)&#xA;

    &#xA;

    But it will merge and then start downloading. I want to be at same time so that user don't have to wait until the merging process.

    &#xA;

    I am using django and i am learning django

    &#xA;