Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (78)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (10990)

  • tryging to use back camera using ffmpeg [closed]

    26 août 2023, par TheMrianura

    Im trying to open back camera using ffmpeg c++ in android environment :

    


    AVFormatContext* formatCtx = avformat_alloc_context();
volatile int x = avformat_open_input(&formatCtx, "android_camera", NULL, NULL);
//x is always -2


    


    It's very hard to find any information about android_camera. Do You have any ideas what could be wrong ?

    


  • FFmpeg fail to convert from .wav to .sbc and then back to .wav

    7 janvier 2021, par Oz Shalev

    I'm trying to use ffmpeg to convert .wav files to .sbc file and then back to .wav file on windows.
I'm trying to use the following commands :

    


      

    1. ffmpeg -i <file1>.wav -acodec sbc <file1>.sbc</file1></file1>
    2. &#xA;

    &#xA;

    The command succeeds and <file1>.sbc</file1> is created.

    &#xA;

    Now I try to convert it back to .wav file and no error generate and the <file2>.wav</file2> not created.

    &#xA;

      &#xA;
    1. ffmpeg -i <file1>.sbc-acodec wav <file2>.wav</file2></file1>
    2. &#xA;

    &#xA;

    Any help here ?

    &#xA;

    Thanks Oz

    &#xA;

  • ffmpeg - Concat multiple video files, add audio, set length to videos combined length

    25 février 2018, par Rune Aspvik

    I have up until now done this in 2 steps.

    1. Concat video files to outputNoAudio.mp4
    2. Add audio to outputNoAudio.mp4 trimming with -shortest

    Now I’m trying to do this in one step using this line

    ffmpeg -f concat -safe 0 -i 'vidlist.txt' -i 'music.m4a' -c copy -movflags faststart -y 'test.mp4'

    If I use -shortest I end up with an output the length of the shortest video in vidlist.txt. What I’m trying to achieve is the length of all videos combined.