Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (61)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Diogene : création de masques spécifiques de formulaires d’édition de contenus

    26 octobre 2010, par

    Diogene est un des plugins ? SPIP activé par défaut (extension) lors de l’initialisation de MediaSPIP.
    A quoi sert ce plugin
    Création de masques de formulaires
    Le plugin Diogène permet de créer des masques de formulaires spécifiques par secteur sur les trois objets spécifiques SPIP que sont : les articles ; les rubriques ; les sites
    Il permet ainsi de définir en fonction d’un secteur particulier, un masque de formulaire par objet, ajoutant ou enlevant ainsi des champs afin de rendre le formulaire (...)

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

Sur d’autres sites (5125)

  • MERGE MULTIPLE VIDEO FILE INTO THEIR CORRESPONDING AUDIO FILE USING FFMPEG [closed]

    20 juin 2023, par ANUBHAV MAURYA

    Suppose I have three video files with no audio "ES01.mp4" "ES02.mp4" "ES03.mp4" and I have also there audio file with name "ES01.acc" "ES02.acc" "ES03.acc" How to join together

    


      

    1. VIDEO1+AUDIO1=NEW_VIDEO1
    2. 


    3. VIDEO2+AUDIO2=NEW_VIDEO2 AND further for another video
    4. 


    


    In this image shown file details and name

    


  • Converting GridFS file object to File object to upload via carriewave then process with ffmpeg in Rails

    20 juin 2014, par Ojash

    I have a GridFS file object

    Mongoid::GridFs::Fs::File _id: 53a277dc700ca7ac146f5797, length: 2237337, chunkSize: 261120, uploadDate: 2014-06-19 05:40:44 UTC, md5: "390968a8ef198f8537495468366f67b9", filename: "720p_5.MP4", contentType: "binary/octet-stream", aliases: nil, metadata: nil

    Now I need a Tempfile(or File will do) instance from that

    File:/tmp/fileupload20140620-4601-19via7k

    Since the file that I process is a video file i need to further process it with the ffmpeg to get different versions of the video file

    normally I could get a tmp file but the tempfile size seems to be quite low for a video file and the ffmpeg also gives error, may be the temp file created is not correct. I have no idea what did i do wrong.

  • Incorrect Codec Parameters, Could not write header for output file : FFMPEG - Android

    26 septembre 2016, par Salmaan

    Why do I get Incorrect Codec Parameters....???
    I am creating video using Android MediaRecorder, use FFMPEG over it to trim it.
    I am just trying to trim the video using FFMPEG.

    String[] ffmpegCommand = {
                       "/data/data/uk.org.humanfocus.hfi/ffmpeg",
                        "-ss",
                        "00:00:00",
                        "-i",
                        path,  // string variable, path of file
                        "-t",
                        "00:00:05", // duration of video
                        "-c",
                        "copy",
                        destination + "/trimmmmm.mp4" }; // string

    This is log I get..
    It is from starting of FFMPEG processing until it ends.

    10-24 18:02:06.039: V/ss(22093): ***Starting FFMPEG***
    10-24 18:02:06.144: V/asd(22093): ***ffmpeg version N-63700-gbf0e5ac Copyright (c) 2000-2014 the FFmpeg developers***
    10-24 18:02:06.144: V/asd(22093): ***  built on Jun  3 2014 13:27:45 with gcc 4.8 (GCC)***
    10-24 18:02:06.144: V/asd(22093): ***  configuration: --prefix=/Users/aliasa/Downloads/android-ndk-r9/sources/ffmpeg/android/arm --enable-shared --disable-static --disable-doc --disable-ffplay --disable-ffprobe --disable-ffserver --disable-avdevice --disable-doc --disable-symver --cross-prefix=/Users/aliasa/Downloads/android-ndk-r9/toolchains/arm-linux-androideabi-4.8/prebuilt/darwin-x86_64/bin/arm-linux-androideabi- --target-os=linux --arch=arm --enable-cross-compile --sysroot=/Users/aliasa/Downloads/android-ndk-r9/platforms/android-9/arch-arm/ --extra-cflags='-Os -fpic -marm' --extra-ldflags=***
    10-24 18:02:06.149: V/asd(22093): ***  libavutil      52. 89.100 / 52. 89.100***
    10-24 18:02:06.149: V/asd(22093): ***  libavcodec     55. 66.100 / 55. 66.100***
    10-24 18:02:06.149: V/asd(22093): ***  libavformat    55. 42.100 / 55. 42.100***
    10-24 18:02:06.149: V/asd(22093): ***  libavfilter     4.  5.100 /  4.  5.100***
    10-24 18:02:06.149: V/asd(22093): ***  libswscale      2.  6.100 /  2.  6.100***
    10-24 18:02:06.149: V/asd(22093): ***  libswresample   0. 19.100 /  0. 19.100***
    10-24 18:02:06.289: V/asd(22093): ***Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '/storage/emulated/0/copymade.mp4':***
    10-24 18:02:06.289: V/asd(22093): ***  Metadata:***
    10-24 18:02:06.289: V/asd(22093): ***    major_brand     : isom***
    10-24 18:02:06.289: V/asd(22093): ***    minor_version   : 0***
    10-24 18:02:06.289: V/asd(22093): ***    compatible_brands: isom3gp4***
    10-24 18:02:06.289: V/asd(22093): ***    creation_time   : 2014-10-24 12:25:55***
    10-24 18:02:06.294: V/asd(22093): ***  Duration: 00:00:11.65, start: 0.000000, bitrate: 3147 kb/s***
    10-24 18:02:06.294: V/asd(22093): ***    Stream #0:0(eng): Video: h263 (s263 / 0x33363273), yuv420p, 720x480 [SAR 12:11 DAR 18:11], 3276 kb/s, 16.61 fps, 16.67 tbr, 90k tbn, 29.97 tbc (default)***
    10-24 18:02:06.294: V/asd(22093): ***    Metadata:***
    10-24 18:02:06.294: V/asd(22093): ***      creation_time   : 2014-10-24 12:25:55***
    10-24 18:02:06.294: V/asd(22093): ***      handler_name    : VideoHandle***
    10-24 18:02:06.294: V/asd(22093): ***    Stream #0:1(eng): Audio: aac (mp4a / 0x6134706D), 8000 Hz, mono, fltp, 12 kb/s (default)***
    10-24 18:02:06.294: V/asd(22093): ***    Metadata:***
    10-24 18:02:06.294: V/asd(22093): ***      creation_time   : 2014-10-24 12:25:55***
    10-24 18:02:06.294: V/asd(22093): ***      handler_name    : SoundHandle***
    10-24 18:02:06.294: V/asd(22093): ***[mp4 @ 0x50ce0] Could not find tag for codec h263 in stream #0, codec not currently supported in container***
    10-24 18:02:06.294: V/asd(22093): ***Output #0, mp4, to '/storage/emulated/0/trimmmmm.mp4':***
    10-24 18:02:06.294: V/asd(22093): ***  Metadata:***
    10-24 18:02:06.294: V/asd(22093): ***    major_brand     : isom***
    10-24 18:02:06.294: V/asd(22093): ***    minor_version   : 0***
    10-24 18:02:06.294: V/asd(22093): ***    compatible_brands: isom3gp4***
    10-24 18:02:06.294: V/asd(22093): ***    encoder         : Lavf55.42.100***
    10-24 18:02:06.294: V/asd(22093): ***    Stream #0:0(eng): Video: h263 (s263 / 0x33363273), yuv420p, 720x480 [SAR 12:11 DAR 18:11], q=2-31, 3276 kb/s, 16.61 fps, 90k tbn, 90k tbc (default)***
    10-24 18:02:06.294: V/asd(22093): ***    Metadata:***
    10-24 18:02:06.294: V/asd(22093): ***      creation_time   : 2014-10-24 12:25:55***
    10-24 18:02:06.294: V/asd(22093): ***      handler_name    : VideoHandle***
    10-24 18:02:06.294: V/asd(22093): ***    Stream #0:1(eng): Audio: aac ([64][0][0][0] / 0x0040), 8000 Hz, mono, 12 kb/s (default)***
    10-24 18:02:06.294: V/asd(22093): ***    Metadata:***
    10-24 18:02:06.294: V/asd(22093): ***      creation_time   : 2014-10-24 12:25:55***
    10-24 18:02:06.299: V/asd(22093): ***      handler_name    : SoundHandle***
    10-24 18:02:06.299: V/asd(22093): ***Stream mapping:***
    10-24 18:02:06.299: V/asd(22093): ***  Stream #0:0 -> #0:0 (copy)***
    10-24 18:02:06.299: V/asd(22093): ***  Stream #0:1 -> #0:1 (copy)***
    10-24 18:02:06.299: V/asd(22093): ***Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument***
    10-24 18:02:06.299: V/asdas(22093): ***Ending FFMPEG***

    I am badly stuck here from 2 3 days, please help me out.