
Recherche avancée
Autres articles (94)
-
Keeping control of your media in your hands
13 avril 2011, parThe 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 (...) -
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
Publier sur MédiaSpip
13 juin 2013Puis-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
Sur d’autres sites (7175)
-
avcodec/encode : Enable encoders to control padding of last frame
15 septembre 2022, par Andreas Rheinhardtavcodec/encode : Enable encoders to control padding of last frame
Some audio codecs work with atomic units that decode to a fixed
number of audio samples with this number being so small that it is
common to put multiple of these atoms into one packet. In these
cases it makes no sense to pad the last frame to the big frame_size,
so allow encoders to set the number of samples that they want
the last frame to be padded to instead.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-
Avconv keep audio track names after transcoding MKV -> TS
15 décembre 2014, par WojtyczekI have problem with naming audio tracks after transcoding from MKV to TS (HLS).
Source file has audio tracks :
Stream #0.1(eng): Audio: aac, 48000 Hz, mono (default)
Stream #0.2(hin): Audio: aac, 48000 Hz, mono
Stream #0.3(jpn): Audio: aac, 48000 Hz, mono
Stream #0.4(kor): Audio: aac, 48000 Hz, mono
Stream #0.5(chi): Audio: aac, 48000 Hz, mono
Stream #0.6(tha): Audio: aac, 48000 Hz, monoTranscoded ts file has :
Stream #0.1[0x101]: Audio: aac, 48000 Hz, mono, fltp, 61 kb/s
Stream #0.2[0x102]: Audio: aac, 48000 Hz, mono, fltp, 72 kb/s
Stream #0.3[0x103]: Audio: aac, 48000 Hz, mono, fltp, 62 kb/s
Stream #0.4[0x104]: Audio: aac, 48000 Hz, mono, fltp, 54 kb/s
Stream #0.5[0x105]: Audio: aac, 48000 Hz, mono, fltp, 57 kb/s
Stream #0.6[0x106]: Audio: aac, 48000 Hz, mono, fltp, 54 kb/sMy avconv parameters are :
avconv -i INPUT -map 0:v -map 0:a -c:v copy -bsf h264_mp4toannexb -c:a copy -hls_list_size 32767 -hls_time 10 OUTPUT
I need to copy all track names (eng, hin, jpn, kor, chi, tha) to transcoded ts file. Is it possible to do it by avconv ? Thanks
-
Use FFmpeg to concat videos(one with audio track, one without audio)
22 mai 2017, par AnswerZhaoI concat videos with the following code, one issue troubles me. When the input1.mp4 is with audio track, the result is normal(the original audio is keep),the output.mp4 is with audio ; but when the input1.mp4 is without audio track and the input2.mp4 is with audio, the output.mp4 is without audio. How can i resolve it to keep the original audio track ? Thx.
ffmpeg -i input1.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts temp1
ffmpeg -i input2.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts temp2
ffmpeg -f mpegts -i "concat:temp1|temp2" -c copy -bsf:a aac_adtstoasc output.mp4