Recherche avancée

Médias (91)

Autres articles (52)

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

  • RTSP to file using IMediaTools errors

    4 décembre 2014, par predy23

    Im trying to save a streaming with RTSP to file with IMediaTools. If I use the local file path of the video in the IMediaReader, it goes nice without errors, but if i make a RTSP streaming of the video and I use the RTSP direction in the IMediaReader i have a lot of errors like this one :

    ERROR org.ffmpeg - [h264 error while decoding MB 50 44, bytestream (td)

    I can open the output file but it have a lot of blurry zones and its not smooth.

    This is my code :

       public static void main(String[] args)  {
       // TODO code application logic here
      //create a media reader
       System.out.println("starting video conversion..");

       // create a media reader
       IMediaReader reader = ToolFactory.makeReader(inputFilename);
       IMediaWriter writer = ToolFactory.makeWriter(outputFilename, reader);

       // add a debug listener to the writer to see media writer events
       writer.addListener(ToolFactory.makeDebugListener());
       reader.addListener(writer);

       // read and decode packets from the source file and
       // and dispatch decoded audio and video to the writer
       while (true) {
           if (reader.readPacket() != null) {

               break;
           }
       }

       reader.close();
       writer.close();
       System.out.println("video conversion finished..");
    }
  • FFmpeg export codec not supported by Samsung

    21 juillet 2021, par Coski

    I am using FFmpeg to render videos (concatenating image files with audio and then applying speed and volume filters) to export videos to upload to TikTok. As a result, I must first move the videos to my phone.

    


    I do not understand why my phone (S20) will happily play one of the videos (codec information pictured first), but presents an error "Codec not supported" when playing the other (information second).

    


    The Supported File

    


    The unsupported file

    


    The codec information is from VLC, and as you can see, both videos have identical Codecs (H264-MPEG4).

    


    From analysing the information, the only conclusion I come to is that it has something to do with the fact that the "Decoded Format" differs across the videos. How can I change my export command on the latter so my phone supports the codec ?

    


    CONCATENATION CODE
ffmpeg -f concat -safe 0 -i {path_temp}\\clips.txt -c copy -y "{path_temp}\\{title}_a.mp4

    


    FILTER CODE
ffmpeg -i input.mp4 -filter:a "volume={volume}" -y temp.mp4"

    


    SECOND FILTER
ffmpeg -i temp.mp4 -filter_complex "[0:v]setpts={1/speed}*PTS[v];[0:a]atempo={speed}[a]" -map "[v]" -map "[a]" -y output.mp4

    


  • lavc/opusdsp : RISC-V V (512-bit) postfilter

    5 octobre 2022, par Rémi Denis-Courmont
    lavc/opusdsp : RISC-V V (512-bit) postfilter
    

    This adds a variant of the postfilter for use with 512-bit vectors.
    Half a vector is enough to perform the scalar product. Normally a whole
    vector would be used anyhow. Indeed fractional multiplers are no faster
    than the unit multipler.

    But in this particular function, a full vector makes up 16 samples,
    which would be loaded at each iteration of the outer loop. The minimum
    guaranteed CELT postfilter period is only 15. Accounting for the edges,
    we can only safely preload up to 13 samples.

    The fractional multipler is thus used to cap the selected vector length
    to a safe value of 8 elements or 256 bits.

    Likewise, we have the 1024-bit variant with the quarter multipler. In
    theory, a 2048-bit one would be possible with the eigth multipler, but
    that length is not even defined in the specifications as of yet, nor is
    it supported by any emulator - forget actual hardware.

    • [DH] libavcodec/riscv/opusdsp_init.c
    • [DH] libavcodec/riscv/opusdsp_rvv.S