
Recherche avancée
Autres articles (58)
-
Modifier la date de publication
21 juin 2013, parComment changer la date de publication d’un média ?
Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
Dans la rubrique "Champs à ajouter, cocher "Date de publication "
Cliquer en bas de la page sur Enregistrer -
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 (...) -
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 (...)
Sur d’autres sites (6463)
-
opening .js file in CMD runs windows script host [migrated]
6 août 2017, par AlexI am installing ffmpeg for node.js.
When i run ffmpeg by the following command in CMD ; ffmpeg -codecs
It opens a .js file with windows script host instead of CMD.This is because i accidentally pressed windows script host as standard program for .js files.
I am running this on windows 10 and i cannot find a way to reverse my actions..
i have tried select CMD as standard program for opening javascript files but this didnt work. It gave me an error that this file type could not be associated with the program chosen.I dont know what to do.
-
How do I install stream-m on my vps server using putty for windows
19 décembre 2014, par They Went Viralwhen i logged into my vps server using the plesk control panel i see httpdocs in the root when using putty i entered an ls command and i only see
@vps : # ls
ffmpeg parallels parallels_installer plesk-installer.sh univac.webmwonder why this is why dont i see the same files as in te control panel ??!
the problem is i am trying to run this https://github.com/vbence/stream-m on the server
the read me saysRUNNING THE SERVER
java -jar stream-m.jar
Before running the server you should edit the sample config file (change password and choose a stream name). So you will end up with something like :
java -jar stream-m.jar server.properties
but im getting an error that says
@vps : # java -jar stream-m.jar server.properties
Error : Unable to access jarfile stream-m.jarNow i do have ffmpeg installed as per putty but when logged into the control panel i don’t see that either what am i doing wrong ?
-
lavf : Use wchar functions for filenames on windows for mkdir/rmdir/rename/unlink
17 novembre 2014, par Martin Storsjölavf : Use wchar functions for filenames on windows for mkdir/rmdir/rename/unlink
This makes sure that the internal utf8 path names are handled
properly - the normal file handling functions assume path names
are in the native codepage, which isn’t utf8.This assumes that the tools outside of lavf don’t use the mkdir
definition. (The tools don’t do the same reading of command line
parameters as wchar either - they probably won’t handle all possible
unicode file parameters properly, but at least work more predictably
if no utf8/wchar conversion is involved.)This is moved further down in os_support.h, since windows.h shouldn’t
be included before winsock2.h, while io.h needs to be included before
the manual defines for lseek functions.Signed-off-by : Martin Storsjö <martin@martin.st>