Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (103)

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

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

Sur d’autres sites (11717)

  • Shortest not working with concat from split video and extra audio track

    27 septembre 2022, par cakedev

    I'm trying to create a video with some speed variations from the source and concat them together at the end while also including an audio track to the result but, I want the audio file to match the length of the concat video, and the result I'm getting is the audio trims at the length of the source video duration, which is the shortest one.
Is there a way to use -shortest so it will only consider the mapped values at the end (concat video and external audio) ?

    


    This is the command I have right now :

    


    ffmpeg.exe -i source.mp4 -i sample.aac -y -filter_complex "[0]split=3[a][b][c];[b]setpts=2.0*PTS,reverse[r];[c]setpts=0.5*PTS[f];[a][r][f]concat=n=3[s]" -shortest -map '[s]' -map 1:a:0 out.mp4


    


    Any help would be really appreciated.

    


    Thanks !

    


  • ffmpeg : Split MP3 in 1 second chunks fast ?

    30 décembre 2019, par Niko

    I want to split mp3 into one second chunks fast. I have the mp3 already in memory (in crystal lang) and want to process it further (so I need it in memory after splitting). I got two possiblities working :

    • Saving the file to ram disk, calling ffmpeg -segment on it, reading all the segement files into memory.
    • Piping the file into ffprobe --show_frames and parsing the pkt_pos fields from the result.

    Both are slow about one second due to unnescessary overhead. Writing to disk and reading hundrets of files in the first case, outputting a lot of unneeded information about a lot of unneeded frames in the second.

    I see two possibilities to improve :

    • a custom filter for ffmpeg that outputs the segements with a separator to stdout.
    • a custom filter for ffprobe similar to --show_frames but with a framestep parameter (the existing framestep filter only seems to work with video files) which outputs only the byte offset of the frames.

    Perhaps I’m missing possibilites with the existing filters. Perhaps there is a tool better fitted for my needs than ffmpeg. I’d be happy for any hints.

  • lavc/hevc/parser : only split packets on NALUs with nuh_layer_id=0

    7 juin 2024, par Anton Khirnov
    lavc/hevc/parser : only split packets on NALUs with nuh_layer_id=0
    

    A packet should contain a full access unit, which for multilayer video
    should contain all the layers.

    • [DH] libavcodec/hevc/parser.c