
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (67)
-
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 -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (8924)
-
How to convert rtp codec in online to amr-nb/wb (octet-align = 0) by FFMPEG ?
28 janvier 2019, par Mehdi Talebirtp is received as input with different payload types such as amr-nb and WAVE.It is necessary to convert all of them to amr-wb but in bandwidth-align (NOT octet-align).
I use this command to convert :ffmpeg -re -i rtp ://127.0.0.1:1235 -ar 16000 -ab 19.85k -acodec libvo_amrbenc -f rtp rtp rtp ://127.0.0.1:1236
But the out put (SDP) is like this :
- v=0
- o=- 0 0 IN IP4 127.0.0.1
- s=No Name
- c=IN IP$ 127.0.0.1
- t=0.0
- a=tool:libvaformat 58.25.100
- m=audio 1236 RTP/AVP 97
- b=AS:19
- a=rtpmap:97 AMR-WB/16000/1
- a=fmtp:97 octet-align =1
My problem is octet-align =1, i need octet-align = 0. Do you know any argument to set this in the command ?
-
How to improve my current method of generating an audio transcript from an online video
23 janvier 2019, par 5areductaseI am working on a project that needs to download and analyze online videos. Most of the videos are hosted on YouTube but some are hosted on Facebook.
My task is to generate an audio transcript for every video.
My colleague was using a series of programs sequentially given some
{link}
:youtube-dl -f '(mp4)[height = 360][width = 640]' {link} -o '{out_1}.%(ext)s'
ffmpeg -i {out_1} -vn {out_2}.wav
sox {out_2} {out_3} channels 1 rate 16000
pocketsphinx_continuous -infile {out_3} -samprate 16000 -hmm {ACOUSTICMODEL} -dict {DICTIONARY} -lm {LANGMODEL} -fwdflat yes -bestpath yes 2> error.log | tee {out_4}.log && rm error.logNote that there’s an extra ffmpeg step to extract the audio, instead of simply directly downloading it with youtube-dl because video is needed as well.
Everything works correctly as far as I can tell, but I’ve never really dealt with audio before so I’m not sure if this is the best way to go about it.
-
How to add html elements to a video online
27 septembre 2018, par GabrieleI need to be able to edit a video with online technologies (Javascript or with some Backend code) and overlay on the original video whatever html elements (maybe even animated elements with css) and download the new video edited.
What is the best way to do it ?
I’ve read about CCapture.js that captures videos from a canvas, but I can’t get it to work and I’m not sure it’s what I’m looking for. I’ve read about some FFMPEG plugins to make it work on the server and use it with some backend languages but I don’t know if it would get the work done as I need it.
For clarity, you know how Instagram can edit your video after you take it adding text or images ? I need to be able to edit a video like that, adding html elements on it.
Thanks in advance for helping.