Recherche avancée

Médias (0)

Mot : - Tags -/navigation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (73)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (8268)

  • Concatenate audio files using ffmpeg

    4 juin 2021, par user13962029

    I am trying to concatenate ac3 and aac using ffmpeg.

    


    ffprobe of jpn_op.m4a :

    


    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'jpn_op.m4a':
Metadata:
major_brand     : M4A 
minor_version   : 512
compatible_brands: M4A isomiso2
encoder         : Lavf58.76.100
Duration: 00:01:17.28, start: 0.000000, bitrate: 224 kb/s
Stream #0:0(jpn): Audio: ac3 (ac-3 / 0x332D6361), 48000 Hz, stereo, fltp, 224 kb/s (default)
Metadata:
  handler_name    : SoundHandler
  vendor_id       : [0][0][0][0]
Side data:
  audio service type: main


    


    ffprobe of eng_nop.m4a

    


    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'eng_nop.m4a':
Metadata:
major_brand     : M4A 
minor_version   : 512
compatible_brands: M4A isomiso2
encoder         : Lavf58.76.100
Duration: 00:22:09.26, start: 0.023000, bitrate: 41 kb/s
Stream #0:0(und): Audio: aac (HE-AAC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 39 kb/s (default)
Metadata:
  handler_name    : SoundHandler
  vendor_id       : [0][0][0][0]


    


    I tried this :

    


    ffmpeg -f concat -i concat_files.txt -c copy final.m4a -y


    


    concat_files.txt contains :

    


    file 'jpn_op.m4a'
file 'eng_nop.m4a'


    


    ffprobe of final.m4a

    


    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'final.m4a':
Metadata:
major_brand     : M4A 
minor_version   : 512
compatible_brands: M4A isomiso2
encoder         : Lavf58.76.100
Duration: 00:23:26.50, start: 0.000000, bitrate: 51 kb/s
Stream #0:0(jpn): Audio: ac3 (ac-3 / 0x332D6361), 48000 Hz, stereo, fltp, 224 kb/s (default)
Metadata:
  handler_name    : SoundHandler
  vendor_id       : [0][0][0][0]
Side data:
  audio service type: main


    


    But, there is silent in place of 2nd file in final.m4a

    


  • Trim Audio Flutter ( ffmpeg_kit_flutter Package) Not Working

    23 septembre 2024, par Sharath Appesh

    Audio Trim is not working

    


    Flutter Version : 3.0.2
Dart : 2.17.3

    


    Package used :
ffmpeg_kit_flutter : ^4.5.1

    


    Input file path :
"/data/user/0/com.goonetech.v1.gofinal/cache/file_picker/sample-15s.mp3"

    


    Output file path :
"/data/user/0/com.goonetech.v1.gofinal/app_flutter/output.mp3"

    


    &#xA;double start=2, &#xA;double end=5;&#xA;&#xA;String path="/data/user/0/com.goonetech.v1.gofinal/cache/file_picker/sample-15s.mp3"&#xA;&#xA;&#xA;    static Future<string> cutAudio(String path, double start, double end) async {&#xA;    final Directory dir = await getApplicationDocumentsDirectory();&#xA;    final outPath = "${dir.path}/output.mp3";&#xA;    double start = 1;&#xA;    double end = 5;&#xA;&#xA;    try &#xA;{&#xA;      await File(outPath).delete();&#xA;    } catch (e) {&#xA;      print("Delete Error");&#xA;    }&#xA;&#xA;    var cmd =&#xA;        "-y -i \"$path\" -vn -ss $start -to $end -ar 16k -ac 2 -b:a 96k -acodec libmp3lame $outPath";&#xA;&#xA;    FFmpegKit.executeAsync(cmd, (session) async {&#xA;      final returnCode = await session.getReturnCode();&#xA;      print("returnCode $returnCode");&#xA;    });&#xA;&#xA;    return outPath;&#xA;  }&#xA;&#xA;</string>

    &#xA;

    The output is :&#xA;returnCode 1

    &#xA;

    The output path does not have the file (File not found exception)

    &#xA;

  • How to merge two videos from Firebase Database and local file ? [closed]

    2 avril 2020, par i i

    I need to merge two videos from a local file and Firebase Storage. How can I solve it ?&#xA;I can get the file from a local file but I couldn't get the video from Firebase Storage.

    &#xA;&#xA;

    Part of my code :

    &#xA;&#xA;

    if(secondlength >0){&#xA;        if (secondlength > secondinterval) {&#xA;            final File source = new File(files.get(1));&#xA;            //  String filename = "https://firebasestorage.googleapis.com/v0/b/***.appspot.com/o/video_covers%2Fvideo_ornek.mp4?alt=media&amp;token=10c3fa8a-4510-4984-8247-8036fffe18b3";&#xA;            //  filesname.add(filename);&#xA;            //  final File output = new File(Uri.parse(filename).getPath());&#xA;            String filename = String.format(Environment.getExternalStorageDirectory().getAbsolutePath() &#x2B; "/" &#x2B; System.currentTimeMillis() &#x2B; ".mp4");&#xA;            filesname.add(filename);&#xA;            final File output = new File(filename);&#xA;            startTrim(source, output, startsecond, startsecond &#x2B; secondinterval);&#xA;            startsecond = startsecond &#x2B; secondinterval &#x2B; .7;&#xA;            secondlength = secondlength - secondinterval;&#xA;            Log.e("filename2 in 10", "" &#x2B; filename);&#xA;        } else {&#xA;            final File source = new File(files.get(1));&#xA;            String filename = String.format(Environment.getExternalStorageDirectory().getAbsolutePath() &#x2B; "/" &#x2B; System.currentTimeMillis() &#x2B; ".mp4");&#xA;            filesname.add(filename);&#xA;            final File output = new File(filename);&#xA;            String DownloadUrl = "https://firebasestorage.googleapis.com/v0/b/*****.appspot.com/o/video_covers%2Fvideo_ornek.mp4?alt=media&amp;token=10c3fa8a-4510-4984-8247-8036fffe18b3";&#xA;            DownloadManager.Request request1 = new DownloadManager.Request(Uri.parse(DownloadUrl));&#xA;            request1.setDescription("Sample Music File");   //appears the same in Notification bar while downloading&#xA;            request1.setTitle("File1.mp3");&#xA;            request1.setVisibleInDownloadsUi(false);&#xA;&#xA;            if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {&#xA;                request1.allowScanningByMediaScanner();&#xA;                request1.setNotificationVisibility(DownloadManager.Request.VISIBILITY_HIDDEN);&#xA;            }&#xA;            request1.setDestinationInExternalFilesDir(getApplicationContext(), "/File", "Question1.mp4");&#xA;&#xA;            DownloadManager manager1 = (DownloadManager) getSystemService(Context.DOWNLOAD_SERVICE);&#xA;            Objects.requireNonNull(manager1).enqueue(request1);&#xA;            if (DownloadManager.STATUS_SUCCESSFUL == 8) {&#xA;                Toast.makeText(AllVideoMerge.this, "success", Toast.LENGTH_SHORT).show();&#xA;            }&#xA;&#xA;            startTrim(source, output, startsecond, startsecond &#x2B; secondlength);&#xA;            startsecond = 0;&#xA;            secondlength = 0;&#xA;&#xA;&#xA;            Log.e("filename2", "" &#x2B; filename);&#xA;        }&#xA;    }&#xA;

    &#xA;