
Recherche avancée
Médias (91)
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Echoplex
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Discipline
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Letting You
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (29)
-
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
Création définitive du canal
12 mars 2010, parLorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
A la validation, vous recevez un email vous invitant donc à créer votre canal.
Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)
Sur d’autres sites (6367)
-
Append h264 stream to m3u8 file with ffmpeg
7 juin 2020, par Hugo AI use ffmpeg with the segments options to write from a h264 fifo to a hls live but the computer may have to restart.
So I want to restart the livestream where it ended.



Here is my ffmpeg command :



ffmpeg -y -f mpegts -r 15 -i 1/live.m3u8 \
 -f s16le -i /dev/zero -r:a 48000 -ac 2 -c:v copy -c:a aac -b:a 128k -map 0:0 -map 1:0 -r 15 \
 -f segment \
 -segment_time 7 \
 -segment_format mpegts \
 -segment_list 0/live.m3u8 \
 -segment_list_flags live \
 -segment_list_type m3u8 \
 -initial_offset -9 \
 -strict 2 $2/%08d.ts < /dev/null```



-
run command that gets error thought python
3 octobre 2020, par kali_xyyaliWassup.


I have shell command.

ffmpeg -list_devices true -f dshow -i dummy -hide_banner



When i run that command i get output data(see text bellow)


[dshow @ 00000281450fbdc0] DirectShow video devices (some may be both video and audio devices)
[dshow @ 00000281450fbdc0] "HD WebCam"
[dshow @ 00000281450fbdc0] Alternative name "@device_pnp_\\?\usb#vid_0408&pid_a060&mi_00#6&391c16c1&0&0000#{65e8773d-8f56-11d0-a3b9-00a0c9223196}\global"
[dshow @ 00000281450fbdc0] DirectShow audio devices

[dshow @ 00000281450fbdc0] "Microphone (Realtek High Definition Audio)"
[dshow @ 00000281450fbdc0] Alternative name "@device_cm_{33D9A762-90C8-11D0-BD43-00A0C911CE86}\wave_{4727F33A-DE04-4706-8312-03696FACC791}"
[dshow @ 00000281450fbdc0] "Stereo mix (Realtek High Definition Audio)"
[dshow @ 00000281450fbdc0] Alternative name "@device_cm_{33D9A762-90C8-11D0-BD43-00A0C911CE86}\wave_{534A8FBC-6C02-4384-B51C-D0363BB7F8FD}"
[dshow @ 00000281450fbdc0] "Microphone (Avsoft Virtual Audio Device)"
[dshow @ 00000281450fbdc0] Alternative name "@device_cm_{33D9A762-90C8-11D0-BD43-00A0C911CE86}\wave_{5CE20B48-361E-4B96-B113-B3E02BA448EC}"
dummy: Immediate exit requested



I have to get list of all audio devices.
And i don't want to parse that string, i will be hard.
How can i get list of all audio devices using ffmpeg-python module ?
Thank u.


UPD :
i have decided to parse that string. But when i type :


command = subprocess.check_output('ffmpeg -list_devices true -f dshow -i dummy -hide_banner', shell=True)



i get this error :


subprocess.CalledProcessError: Command 'ffmpeg -list_devices true -f dshow -i dummy -hide_banner' returned non-zero exit status 1.



How can i call that command and put its result into my variable "command" ?


-
run command that got error thought python
3 octobre 2020, par kali_xyyaliWassup.


I have shell command.

ffmpeg -list_devices true -f dshow -i dummy -hide_banner



When i run that command i get output data(see text bellow)


[dshow @ 00000281450fbdc0] DirectShow video devices (some may be both video and audio devices)
[dshow @ 00000281450fbdc0] "HD WebCam"
[dshow @ 00000281450fbdc0] Alternative name "@device_pnp_\\?\usb#vid_0408&pid_a060&mi_00#6&391c16c1&0&0000#{65e8773d-8f56-11d0-a3b9-00a0c9223196}\global"
[dshow @ 00000281450fbdc0] DirectShow audio devices

[dshow @ 00000281450fbdc0] "Microphone (Realtek High Definition Audio)"
[dshow @ 00000281450fbdc0] Alternative name "@device_cm_{33D9A762-90C8-11D0-BD43-00A0C911CE86}\wave_{4727F33A-DE04-4706-8312-03696FACC791}"
[dshow @ 00000281450fbdc0] "Stereo mix (Realtek High Definition Audio)"
[dshow @ 00000281450fbdc0] Alternative name "@device_cm_{33D9A762-90C8-11D0-BD43-00A0C911CE86}\wave_{534A8FBC-6C02-4384-B51C-D0363BB7F8FD}"
[dshow @ 00000281450fbdc0] "Microphone (Avsoft Virtual Audio Device)"
[dshow @ 00000281450fbdc0] Alternative name "@device_cm_{33D9A762-90C8-11D0-BD43-00A0C911CE86}\wave_{5CE20B48-361E-4B96-B113-B3E02BA448EC}"
dummy: Immediate exit requested



I have to get list of all audio devices.
And i don't want to parse that string, i will be hard.
How can i get list of all audio devices using ffmpeg-python module ?
Thank u.


UPD :
i have decided to parse that string. But when i type :


command = subprocess.check_output('ffmpeg -list_devices true -f dshow -i dummy -hide_banner', shell=True)



i get this error :


subprocess.CalledProcessError: Command 'ffmpeg -list_devices true -f dshow -i dummy -hide_banner' returned non-zero exit status 1.



How can i call that command and put its result into my variable "command" ?