
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (40)
-
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 (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...) -
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 (8133)
-
Can't figure out how to get ffmpeg to save to an odd file extension
30 septembre 2015, par dinkiI’m working on a network encoder for SageTV. I get request from the SageTV with certain filenames. I’m trying to capture video from my capture card and write out to a file called
’D :\Media\tvrecordings\RokuNetworkEncoderonlocalhost4510TVTuner-
0.mpgbuf’Here’s the command I’m using :
C :\Users\User>C :/Users/User/Desktop/ffmpeg-20150928-git-235381e-win64-static/bin/ffmpeg.exe
-f dshow -crossbar_video_input_pin_number 2 -i video="ATI AVStream Analog Capture"
D :\Media\tvrecordings\RokuNetworkEncoderonlocalhost4510TVTuner-0.mpgbufWhen I run that command, I get this error :
[NULL @ 00000000087f9160] Unable to find a suitable output format for 'D:\Media\
tvrecordings\RokuNetworkEncoderonlocalhost4510TVTuner-0.mpgbuf'
D:\Media\tvrecordings\RokuNetworkEncoderonlocalhost4510TVTuner-0.mpgbuf: Invalid
argumentBut if I change .mpgbuf to .mpg it works fine . I am forced to use that filename though. Is there an easy way to do this ?
-
Record Sound on Ubuntu Docker Image
21 avril 2020, par Daniel RasmusonI would like record audio with
ffmpeg
when I capture my screen. The error I'm getting when usingalsa
is that is that my image does not have a sound card-f alsa -ac 2 -i hw:0



Here is how to reproduce on a fresh version of Ubuntu



Start a session in a new ubuntu docker image.



docker pull ubuntu
docker run -it --rm ubuntu




Setup alsa (Advanced Linux Sound Architecture)



apt-get update
apt-get install alsa-utils




List the sound cards



aplay -l
# aplay: device_list:268: no soundcards found...




And playing this sound will fail because this image doesn't have any sound cards



sudo aplay /usr/share/sounds/alsa/Front_Center.wav



-
Record Sound on Ubuntu Docker Image
12 avril 2017, par Daniel RasmusonI would like record audio with
ffmpeg
when I capture my screen. The error I’m getting when usingalsa
is that is that my image does not have a sound card-f alsa -ac 2 -i hw:0
Here is how to reproduce on a fresh version of Ubuntu
Start a session in a new ubuntu docker image.
docker pull ubuntu
docker run -it --rm ubuntuSetup alsa (Advanced Linux Sound Architecture)
apt-get update
apt-get install alsa-utilsList the sound cards
aplay -l
# aplay: device_list:268: no soundcards found...And playing this sound will fail because this image doesn’t have any sound cards
sudo aplay /usr/share/sounds/alsa/Front_Center.wav