Recherche avancée

Médias (91)

Autres articles (58)

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

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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (8190)

  • FFmpeg Error : Output file does not contain any stream [closed]

    27 octobre 2023, par 2nd Ethan

    I'm trying to use FFmpeg to split an audio file into segments, but I'm encountering the following error :

    


    Output file #0 does not contain any stream


    


    The code is generated automatically using DDSP-SVC notebook.

    


    subprocess.run(f'ffmpeg -i "{filepath}" -f segment -segment_time {sep_duration_final} "{out_filepath}" -y', capture_output=True, shell=True)


    


    Here's the command I'm using :

    


    ffmpeg -i "preprocess/norm\a.wav" -f segment -segment_time 12 "data/train\audio\a-%04d.wav" -y


    


    I have a few questions regarding this issue :

    


      

    1. What does this error message mean, and why is it occurring ?

      


    2. 


    3. How can I resolve this error and successfully split my audio file into segments ?

      


    4. 


    


    Any insights or guidance on troubleshooting this FFmpeg error would be greatly appreciated.

    


    I have tried running the FFmpeg command provided in my question to split an audio file into segments.

    


    I expected this command to successfully create a series of segmented audio files in the 'data/train\audio' directory.

    


    However, I encountered the 'Output file #0 does not contain any stream' error, and no output files were generated.

    


  • ImgFlip Gif Generator

    30 juillet 2013, par user1960364

    Reference : http://imgflip.com/gifgenerator

    So, I don't need the web UI and all the cusomizations. But I've been trying to figure out how to slice and convert a mp4 or mov to an animated gif automagically. I've looked at several ways of doing it with imagemagick/ffmpeg but none of them rendered results as good as imgflip. I always end up with some 24bit color-looking gif instead or some impractically large file.

    Any suggestions/ideas on how to do it as efficiently as imgflip ?

    Thanks :)

    — Edit —
    I found this on reddit :

    #!/bin/bash

    # Extracts each frame of the video as a single gif
    ffmpeg -i $1 out%04d.gif

    # Combines all the frames into one very nicely animated gif.
    convert -delay 4 out*.gif anim.gif

    # Optimizes the gif using imagemagick
    convert -layers Optimize anim.gif optimized_output.gif

    # Cleans up the leftovers
    rm out*
    rm anim.gif

    Using that, I created (and yes, I'm on windows) :

    ffmpeg -i v.mp4 -r 10 -q:v 1 tmp/out%04d.jpg
    convert -delay 10 tmp/out*.jpg jpg-d10.gif
    echo y | del tmp

    And got decent quality, even this creates an 8MB file for a small 6sec 480x480 clip at 10fps. And because it's a video and not vector or series of images with very few colors, extracting jpg images does better compression than -layers Optimize. However, for some reason, -qscale/-q:v on the frame extraction does not effect the final file size, just the quality.

  • Fix frame-packing==5 with some decoders

    18 juin 2014, par Tal Aloni
    Fix frame-packing==5 with some decoders
    

    The spec mandates that frame-packing==5 requires the SEI on every frame that
    begins a view sequence (i.e. the input frames L0-R0-L1-R1 have 4 view sequences,
    but if reordered by the encoder to L0-L1-R0-R1 there are now 2 view sequences).
    For simplicity, we write the SEI on every frame.

    This fixes frame-packing==5 3D playback on some decoders (PlayStation 3, Sony
    W8 series, possibly others).

    • [DH] encoder/encoder.c
    • [DH] encoder/set.c