Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (63)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

Sur d’autres sites (7944)

  • FFMPEG streaming raw H264

    29 avril 2020, par lbasek

    Im currently working on streaming a mp4 file encoded with h264 over TCP and decoding at the mobile side (Android).I successfully manage up connection and streaming h264 raw data but that image quality is too bad (half screen is green or purple and everything is pixelized).I started streaming with :

    



    ffmpeg -re \                                                       
-i test.mp4 \
-vcodec libx264 \
-vf scale=1920:1080 \
-vprofile high \
-preset ultrafast \
-b:v 1M -maxrate 2M -bufsize 2M -pass 1 \
-strict experimental \
-pix_fmt yuv420p \
-tune zerolatency \
-movflags use_metadata_flag \
-movflags empty_moov+default_base_moof+faststart \
-f h264 tcp://10.230.253.241:9090


    



    Result :
Image

    



    Am I on right road and its that possible with raw h264 ? Any advice would welcome ! Thanks

    


  • Convert WAV to FLAC or ALAC whilst preserving/converting id3 tags [closed]

    28 mars 2023, par Jai_1008

    Basically I want to render my mastered audio out of Wavelab, (the industry standard for mastering music) and then be able to have my track added to the macOS Music app with all metadata already included.

    


    It's more complicated than this, but basically Wavelab only gives serious metadata options to its WAV output. If I render out as FLAC, which, as a format, has better metadata implementation than WAV files, the metadata options I have avialable in Wavelab are not as good/extensive.

    


    So to get the metadata I want, I have to render as WAV. But then I can't put that in Apple Music app whilst keeping it's id3 tags. All the fields like Artist etc are blank in the Music app.

    


    The Music app DOES recognise the metadata from an ALAC file. So I have to convert a WAV to ALAC (or FLAC as converting FLAC to ALAC is easy) whilst somehow preserving its metadata. And for the life of me, I cannot find an answer to this from searching and reading everything.

    


    Any help ? I was looking into ffmpeg as an option, but no one speaks to this specific situation of mine. Converting WAV to FLAC or ALAC and preserving the WAVs metadata (id3 tags).

    


    I've tried using -map_metadata 0 when converting a WAV to FLAC in ffmpeg, but ffmpeg says it's ignoring ID3 tags because it found more suitable metadata. But the resulting FLAC only has Artist and copyright fields included in its metadata.

    


  • lavc/exrdsp : unroll predictor

    11 novembre 2023, par Rémi Denis-Courmont
    lavc/exrdsp : unroll predictor
    

    With explicit unrolling, we can skip half of the sign bit flips, and
    the compiler is then better able to optimise the scalar loop :

    predictor_c : 31376.0 (before)
    predictor_c : 23703.0 (after)

    • [DH] libavcodec/exrdsp.c