
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (100)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
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 (12638)
-
ffprobe "moov atom not found" on Linux, but works on OS X
15 mars 2017, par NeuroXcI have an MP4 file that I am trying to read info from via
ffprobe -print_format json -show_format -show_streams input.mp4
. On OS X with the Homebrew-provided FFMpeg 3.2.4, I’m able to read the video information this way. However, on both Debian Stretch and Arch Linux, with FFMpeg 3.2.4 provided through the respective package managers, I am getting :[mov,mp4,m4a,3gp,3g2,mj2 @ 0x55e0b7977120] Format mov,mp4,m4a,3gp,3g2,mj2 detected only with low score of 1, misdetection possible!
[mov,mp4,m4a,3gp,3g2,mj2 @ 0x55e0b7977120] moov atom not found
input.mp4: Invalid data found when processing inputAn example of a file showing this issue is https://falcon479.startdedicated.com/files/boxes.mp4
-
What format/protocol does ffmpeg use for "raw" output ?
18 avril 2017, par MSaltersGiven a commandline
ffmpeg -f lavfi -i "sine=frequency=1000:duration=5" -ar 8000 -c:a FOO pipe:1
, ffmpeg might complain it’s "unable to find a suitable output format". For some codecs, ffmpeg has a default container format, e.g.-c:a libmp3lame
will produce MP3’s. For other codecs, you just repeat yourself (sort of) :-c:a pcm_alaw -f alaw
But what if I want to stream the raw codec output, and there’s no matching
-f
? Can I just take-f alaw
and assume that it doesn’t do anything ? (G711 alaw is a simple codec which produces a byte stream, so-f alaw
presumably just copies that byte stream)Obviously the other side of the pipe needs to know how the data stream needs to be interpreted, if there’s no container info. But assume that I already know the other side of the pipe is expecting an audio stream, sampled at 8 kHz, encoded with
-c:a FOO
. -
Revert "avcodec/bsf : Forbid packet without payload in av_bsf_send_packet"
23 avril 2017, par James AlmerRevert "avcodec/bsf : Forbid packet without payload in av_bsf_send_packet"
This reverts commit bfdca87ab55c7f69087d962dc47aa45c8c6436fb.
Packets with no data or side data will be valid EOF signal in an
upcoming merge.Signed-off-by : James Almer <jamrial@gmail.com>