Recherche avancée

Médias (0)

Mot : - Tags -/tags

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

Autres articles (22)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • 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

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (7044)

  • FFMPEG m4a file not playable in Safari

    20 novembre 2017, par Jeremy

    Recently, we’ve noticed that some of our audio files created on an Android app are unplayable on Safari / IOS but work fine on Chrome / Android. Here is how we encode currently :

    command = new String[]{"-f", "s16le", "-sample_rate", "44100", "-ac", "1", "-i",
                       mTempFile.getAbsolutePath(),
                       "-c:a", "aac",
                       mFinalFile.getAbsolutePath()};

    We just noticed the problem, and are not sure what to make of it.. Is there a command that will let our file be playable in all platforms ?

    ** File Specs**

    mTempFile : raw, signed 16bit PCM, Little Endian

    mFinalFile : empty, newly created file with .m4a extension

  • Instagram API video publishing [closed]

    22 mai 2023, par Bergutov Ruslan

    I'm trying to publish video to instagram and it always gives me error

    


    error code 2207026, message "The video file you selected is in a format that we don't support." and there is also note about aspect_ratio

    


    But the point is that previously i downloaded this video from instagram and it has compatible aspect ratio following specs

    


    video that i'm trying to upload

    


    I've tried couple configs for ffmpeg to prepare video but in my case it didn't get job done

    


  • ffmeg : audio drifts in merged TS file for separate audio and video TS files

    13 septembre 2021, par Ronnie Marksch

    basic situation

    


    I have two lists of TS files (each list is specified in an m3u8 file).
The TS files in the first list have only video.
The TS files in the second list have only audio.

    


    I combine the TS files from the first list to get the video only file result_video.ts of duration A (see code for this used below).
I combine the TS files from the second list to get the audio only file result_audio.ts of duration B (see code for this used below).
The problem is that A * 76.28% = B whereas I expected both files to have the same length.
I then combine result_video.ts and result_audio.ts and get a result.ts file where the audio drifts from the video heavily and where the audio has gaps at the points where the chunks have been merged.

    


    Question : how to ensure that the audio is not too slow ? or : how to combine the TS files properly.

    


    code for obtaining the two result files

    


    ffmpeg -safe 0 -f concat -i filelist_video.txt -c copy result_video.ts
ffmpeg -safe 0 -f concat -i filelist_audio.txt -c copy result_audio.ts


    


    code for obtaining the final result

    


    ffmpeg.exe -i .\video_merge_0.ts -i .\audio_merge_0.ts -c copy result.ts


    


    test using only one TS file

    


    I copied the first of the audio input TS files to another TS file.
Doing that produced the output below with a muxing overhead of 22.44%, which is suspiciously close to 1-76.28%.

    


    ffmpeg.exe -i audio_chunk1.ts -c copy audio_chunk1_tmp.ts


    


    I get the info :

    


    Output #0, mpegts, to 'audio_chunk1.ts':
  Metadata:
    encoder         : Lavf58.45.100
    Stream #0:0: Audio: aac (LC) ([15][0][0][0] / 0x000F), 48000 Hz, stereo, fltp, 125 kb/s
Stream mapping:
  Stream #0:0 -> #0:0 (copy)
Press [q] to stop, [?] for help
size=     118kB time=00:00:05.99 bitrate= 161.1kbits/s speed=3.48e+03x
video:0kB audio:96kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 22.444508%


    


    using hls

    


    The following now produces files audio_chunk1_tmp.ts, audio_chunk1_tmp0.ts, ... audio_chunk1_tmp2.ts. So for some reason, the single file already gets split. However, ffmpeg shows that the duration of the result is 5.99s for the 5.87s input (which may be ok).

    


    ffmpeg.exe -i audio_chunk1.ts -f hls audio_chunk1_tmp.ts