Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (70)

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

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (12966)

  • avcodec/mpeg4videodec : Clear bits_per_raw_sample if it has originated from a previous...

    9 juin 2018, par Michael Niedermayer
    avcodec/mpeg4videodec : Clear bits_per_raw_sample if it has originated from a previous instance
    

    Fixes : assertion failure
    Fixes : ffmpeg_crash_5.avi

    Found-by : Thuan Pham <thuanpv@comp.nus.edu.sg>, Marcel Böhme, Andrew Santosa and Alexandru Razvan Caciulescu with AFLSmart
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/mpeg4videodec.c
  • ffmpeg fast seek not working for MP4 over HTTP

    27 juillet 2024, par Gmanicus

    I'm attempting to download snapshots from a video provided by the U.S House of Representatives :

    &#xA;

    https://houseliveprod-f9h4cpb9dyb8gegg.a01.azurefd.net/east/2024-04-11T08-55-12_Download/video_3000000_1.mp4&#xA;

    &#xA;

    I am using fluent-ffmpeg in Node to execute this command :

    &#xA;

    ffmpeg(&#x27;https://houseliveprod-f9h4cpb9dyb8gegg.a01.azurefd.net/east/2024-04-11T08-55-12_Download/video_3000000_1.mp4&#x27;)&#xA;  .inputOption(`-ss 03:33:33`)&#xA;  .outputOptions([&#xA;     &#x27;-vframes 1&#x27;&#xA;  ])&#xA;  .output(&#x27;test.png&#x27;)&#xA;&#xA;// Effectively:&#xA;// ffmpeg -ss 03:33:33 -i  -y -vframes 1 test.png&#xA;

    &#xA;

    My intention is to fast-seek to the desired timestamp and take a snapshot over HTTP. However, when doing so, the performance is not great. A snapshot takes about 10s per 3hrs of video and seems to increase fairly linearly at that rate.

    &#xA;

    However, when using ffmpeg on the same video locally, it's super fast ! Sub-500ms regardless of the desired timestamp.

    &#xA;

    Is there some magic that could be done via ffmpeg options or perhaps some sort of technique with manual requests to get a snapshot at the desired segment of video more efficiently ?

    &#xA;

  • ffmpeg merge_outputs not outputting the final file

    30 mai 2020, par Ethanopp

    I am trying to combine multiple independent instrument audio tracks (.ogg files) from a song into 1 final 'song' file that has them all playing simultaneously.

    &#xA;&#xA;

    The following properly outputs each independent .mp4 file, but once it's done running, I don't see a final file with everything combined...

    &#xA;&#xA;

    import ffmpeg&#xA;import os&#xA;&#xA;os.environ[&#x27;path&#x27;] = &#x27;C:\\Program Files (x86)\\ffmpeg\\bin&#x27;&#xA;&#xA;song = ffmpeg.input(&#x27;song.ogg&#x27;).output(&#x27;song.mp4&#x27;).audio&#xA;drums = ffmpeg.input(&#x27;drums_1.ogg&#x27;).output(&#x27;drums1.mp4&#x27;).audio&#xA;drums2 = ffmpeg.input(&#x27;drums_2.ogg&#x27;).output(&#x27;drums2.mp4&#x27;).audio&#xA;drums3 = ffmpeg.input(&#x27;drums_3.ogg&#x27;).output(&#x27;drums3.mp4&#x27;).audio&#xA;guitar = ffmpeg.input(&#x27;guitar.ogg&#x27;).output(&#x27;guitar.mp4&#x27;).audio&#xA;vocals = ffmpeg.input(&#x27;vocals.ogg&#x27;).output(&#x27;vocals.mp4&#x27;).audio&#xA;rhythm = ffmpeg.input(&#x27;rhythm.ogg&#x27;).output(&#x27;rhythm.mp4&#x27;).audio&#xA;&#xA;out = ffmpeg.merge_outputs(song, drums, drums2, drums3, guitar, vocals, rhythm)&#xA;&#xA;ffmpeg.run(out)&#xA;

    &#xA;