
Recherche avancée
Médias (29)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (73)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, 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 (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)
Sur d’autres sites (6450)
-
Anomalie #2523 (Nouveau) : pas d’autorisation voir rubrique sur sélecteur ajax
6 février 2012, par Valérie Journet-Girod-Texier-ancêtresUn filtrage des rubriques autorisées à s’afficher via la fonction "autoriser_rubrique_voir" ne fonctionne que lorsque les rubriques sont présentées en menu déroulant dans la fiche de création / modification d’auteur : ?exec=auteur_infos. Sur un grand volume de rubriques, le sélecteur ajax prend le (...)
-
Anomalie #2415 : Les autorisations SPIP 3.0, oups ?
5 janvier 2012, par marcimat -À ce propos, les noms d’autorisations des statistiques (http://zone.spip.org/trac/spip-zone/browser/_core_/plugins/statistiques/stats_autoriser.php) ne sont pas correctes actuellement en ?rev=56562 Un exemple : autoriser_statistiques_referers_menu_dist doit devenir
menu > onglet : (...)
-
ffmeg : audio drifts in merged TS file for separate audio and video TS files
13 septembre 2021, par Ronnie Markschbasic 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 to1-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