
Recherche avancée
Médias (91)
-
#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
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (102)
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
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 (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 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 (13569)
-
Highlight some words in text with ffmpeg drawtext
13 novembre 2020, par The Coding MonkIs there any way to highlight some words in text written with the
drawtext
filter ?

I know it doesn't support it directly, so I'm looking for an alternative way to do it.


-
Anomalie #1817 : Raccourci SPIP tiret : liste ou puce graphique ?
30 septembre 2011, par cam.lafit -Cette écriture semble aller au contraire de la syntaxe SPIP. Vis à vis des autres éléments typographiques elle ne porte aucun sens. L’idée de Romy semble une bonne alternative, à titre perso je dirai qu’il faut simplement retirer cette (...)
-
ffmpeg extracts only part of 1 audio stream from .ts file
6 juillet 2020, par ShakalakahHere is what
ffprobe input.ts
shows :

libavutil 56. 55.100 / 56. 55.100
 libavcodec 58. 93.100 / 58. 93.100
 libavformat 58. 47.100 / 58. 47.100
 libavdevice 58. 11.100 / 58. 11.100
 libavfilter 7. 86.100 / 7. 86.100
 libswscale 5. 8.100 / 5. 8.100
 libswresample 3. 8.100 / 3. 8.100
 libpostproc 55. 8.100 / 55. 8.100
Input #0, mpegts, from 'D:\Downloads\TEST\audio.ts':
 Duration: 02:22:29.67, start: 0.000000, bitrate: 51 kb/s
 Program 1
 Stream #0:0[0x101]: Audio: aac (LC) ([15][0][0][0] / 0x000F), 48000 Hz, stereo, fltp, 83 kb/s



So the length of .ts file is 2h:22m:29.67s and looks like it contains only audio (AAC) : when i open it in Windows Media Player i can jump to any position within the 2h:22m range and hear sound playing, and there is no video on the screen. This makes me think the extracted audio will also be of 2h:22m length, but i get only a 51m:14s file.
I tried the following commands :
1)
ffmpeg -i input.ts -vn -acodec copy outputaudio.aac
2)
ffmpeg -i input.ts -map 0:v -map 0:a -c copy outputaudio.aac
(as far as i understood this is "extract ALL audiotracks" command)3)
ffmpeg -i input.ts -ss 00:00:00 -t 02:22:29.6 -q:a 0 -map a outputaudio.aac
(to force extraction to the full length, i.e. 2h:22m)4)
ffmpeg -i input.ts -map 0:a outputaudio.aac -map 0:v outputonlyvideo.avi
(i heard this is an alternative way to force extraction of full-length audio through simultaneous extraction of video. Though looks like my .ts has no video, i decided to try this command too and got an error message : Stream map '0:v' matches no streams)What am i doing wrong ? Which alternative commands can i try ?
Is it possible, that the real length of audio stream is 51m:14s only ? But why i can listen to all 2h:22m length in Windows Media Player - could 51m:14s piece be somehow looped inside .ts to create an impression of 2h:22m length ?