Recherche avancée

Médias (1)

Mot : - Tags -/wave

Autres articles (73)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (8691)

  • FFMPEG : Encoding MKV to Prores, resulting in asynchronous audio

    23 juin 2015, par Simon

    I don’t know if it’s the "best" way to do it, but for being able to use Bluray material in Avid, I’m converting M2TS files to Prores quicktimes.

    I’m using Another GUI with following parameters :

    -i "<fullsourcefilename>" -y

    -map 0:v
    -map 0:a:4

    -vcodec prores -profile:v 3
    -acodec pcm_s16le -ac 2

    "<outputpath><outputfilename>_prores.mov"
    </outputfilename></outputpath></fullsourcefilename>

    This works for M2TS files, but when doing the same for MKV ones, I still get the video and audio, but the audio is not synced with the picture anymore.

    Is this a known issue, or how to fix it ?
    I would need the most efficient/fastest way (so not too complicated, because it should be clear to users what to do).
    Thank you !

  • Is there any way to detect and cut out the real video part from a full video

    27 octobre 2020, par Jemma.Z

    Not sure whether I can explain my question. I have a bunch of video material. Some of them are recorded videos from mobile phones. When people record the video on their phone, their produced video may contain more than just the recorded video I need. I need to detect and cut out the useless part. The useless part would be still while the part I need is changing and on the play.

    &#xA;

    I do not know whether there is any way for me to do it. I can write some code but I just do not know what libraries to use. Does it have something to do with OpenCV. Or is there a way to solve it with ffmpeg ?

    &#xA;

    Hopefully someone can give me some ideas. Thanks a lot.

    &#xA;

  • How to merge 1 video and 8 ch audio

    7 mai 2022, par jiiiin

    I have 1 video and 8 audio. I want to merge all of these.

    &#xA;

    ffmpeg -i out1.wav -i out2.wav -i out3.wav -i out4.wav -i out5.wav -i out6.wav -filter_complex "[0:a][1:a][2:a][3:a][4:a][5:a]join=inputs=6:channel_layout=5.1(side):map=0.0-FL|1.0-FR|2.0-FC|3.0-LFE|4.0-SL|5.0-SR[a]" -map "[a]" -c:a pcm_s24le video.wav

    &#xA;

    I want to add 1 video(video.mov) and 2.0 stereo audio(out7.wav out8.wav) to this command. Finally, I want a .mov material with 1 vidoeo(8 channel audio(5.1+2.0)). I'm looking for a way to modify the command. I'd appreciate your help.&#xA;[video 1ch audio 1ch L / 2ch R / 3ch C / 4ch LFE / 5ch LS / 6ch RS / 7ch L / 8ch R]

    &#xA;