
Recherche avancée
Médias (91)
-
DJ Z-trip - Victory Lap : The Obama Mix Pt. 2
15 septembre 2011
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Matmos - Action at a Distance
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Danger Mouse & Jemini - What U Sittin’ On ? (starring Cee Lo and Tha Alkaholiks)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Cornelius - Wataridori 2
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Rapture - Sister Saviour (Blackstrobe Remix)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (43)
-
L’espace de configuration de MediaSPIP
29 novembre 2010, parL’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
Il permet de configurer finement votre site.
La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
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 (...)
Sur d’autres sites (5261)
-
Bash script to convert music from one directory into another
26 octobre 2014, par SinTransI’ve modified this script from the arch forums : https://wiki.archlinux.org/index.php/Convert_Flac_to_Mp3#With_FFmpeg
I’m trying to find specific file types in a directory structure, convert them to another music file type, and place them in a "converted" directory that maintains the same directory structure.
I’m stuck at stripping the string
$b
of its file name.$b
holds the string./converted/alt-j/2012\ an\ awesome\ wave/01\ Intro.flac
Is there a way I can remove the file name from the string ? I don’t think ffmpeg can create/force parent directories of output files.
#!/bin/bash
# file convert script
find -type f -name "*.flac" -print0 | while read -d $'\0' a; do
b=${a/.\//.\/converted/}
< /dev/null ffmpeg -i "$a" "${b[@]/%flac/ogg}"
#echo "${b[@]/%flac/ogg}" -
Unknown Codec error at ffserver
23 mai 2016, par PotatoI installed ffmpeg following this page, https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu
As you see I enabled x264.
But when I run ffserver, I get/etc/ffserver.conf:16: Unknown VideoCodec: libx264
/etc/ffserver.conf:24: Unknown AudioCodec: libfaacMy conf file is
HTTPPort 8080
RTSPPort 8090
HTTPBindAddress 0.0.0.0
RTSPBindAddress 0.0.0.0
MaxClients 1000
MaxBandwidth 1000000
<feed>
Launch ffmpeg -f v4l2 -i /dev/video0 -f alsa -ac 1 -i hw:1
FileMaxSize 400K
</feed>
<stream>
Format rtp
Feed feed1.ffm
VideoCodec libx264
VideoFrameRate 24
VideoBitRate 100
VideoSize 320x240
#AVPresetVideo default
#AVPresetVideo baseline
AVOptionVideo flags +global_header
AudioCodec libfaac
AudioBitRate 32
AudioChannels 1
AudioSampleRate 22050
AVOptionAudio flags +global_header
</stream>Well, what can I do more.
-
Compile FFmpeg with openssl for macOS
23 juin 2017, par H. WilsonHi I would like to ask how to compile ffmpeg with openssl for macOS.
When I type https in ffmpeg to download / encode webstream from the website I always get an error
"https protocol not found, recompile FFmpeg with openssl, guntls. or securetransport enabled"
whilst http does work (some websites didn’t allow http as I got an error "HTTP error 403 Forbidden though)
https://trac.ffmpeg.org/wiki/CompilationGuide/MacOSX
I have read the link above but I am unsure about the process as I don’t use homebrew to install ffmpeg but built myself.
I am the very beginner using ffmpeg and any help would be appreciated..
I hope somebody could show me its process to compile ffmpeg with openssl.For further advice, I am wondering if the function of ffmpeg I built myself is same as the static one here : ttps ://ffmpeg.zeranoe.com/builds/
I built ffmpeg for mac by this website : http://ericholsinger.com/install-ffmpeg-on-a-mac
Thanks in advance