
Recherche avancée
Médias (91)
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (101)
-
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 (...) -
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 (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (11516)
-
How to encode ffmepg for jwplayer script which script read pass php file ?
25 décembre 2013, par Sarun PrasomsriI have encoded my video use this command.
$encode_comand="ffmpeg -i $input_path -ac 1 -ab 128k -y -vcodec libx264 -vpre ultrafast -g 30 -r 30 -crf 22 $target_path &";
exec($encode_comand);And it work for script below
echo '
<div style="margin:0px auto; text-align:center; width:auto; display:blog;" class="vdoplayer">JW Player goes here</div>
<code class="echappe-js"><script type="text/javascript" src="http://stackoverflow.com/feeds/tag/jwplayer/jwplayer.js"></script><script type="text/javascript">jwplayer.key="OOD7GkWbyNXOL6MbstF2Sa/YrQPgtNUPqxm5NA==";</script>
<script type="text/javascript"><br />
jwplayer("mediaplayer&#39;."11111".&#39;").setup({<br />
flashplayer: "jwplayer/jwplayer.flash.swf",<br />
file: "$video_file", <br />
width: "&#39;.$width.&#39;",<br />
height: "&#39;.$height.&#39;",<br />
stretching: "uniform",<br />
type: "mp4",<br />
skin: "jwplayer/jwplayer-skins-free/six.xml",<br />
<br />
});<br />
</script>'
//$video_file="http://myhost.com/project/files/1/video/file3.mp4" ;
But After I chang script
echo '
<div style="margin:0px auto; text-align:center; width:auto; display:blog;" class="vdoplayer">JW Player goes here</div>
<code class="echappe-js"><script type="text/javascript" src="http://stackoverflow.com/feeds/tag/jwplayer/jwplayer.js"></script><script type="text/javascript">jwplayer.key="OOD7GkWbyNXOL6MbstF2Sa/YrQPgtNUPqxm5NA==";</script>
<script type="text/javascript"><br />
jwplayer("mediaplayer&#39;."11111".&#39;").setup({<br />
flashplayer: "jwplayer/jwplayer.flash.swf",<br />
file: "readfile.php", <br />
width: "&#39;.$width.&#39;",<br />
height: "&#39;.$height.&#39;",<br />
stretching: "uniform",<br />
type: "mp4",<br />
skin: "jwplayer/jwplayer-skins-free/six.xml",<br />
abouttext: "project",<br />
aboutlink: "project",<br />
});<br />
</script>'
It not work for my video encode,But i try video that not encode it work.
Video
Dimension : 853 x 840
codec : H.264
Framerate : 30 frames per second
Bitrate 408 kbps
Audio
codec : MPEG-4 AAC
channels : Stero
Sample rate : 44100 Hz ์
Bitrate : N/AReadfile.php that have function read file
<?php
$filename= 'http://www.longtailvideo.com/jw/upload/bunny.mp4'; //can read
$video_file = "http://myhost.com/project/files/1/video/file3.mp4";
//cannot read Same file as script below
if (file_exists($video_file)) { ob_clean(); flush(); };
header('Content-Type: video/mp4');
header('Content-Disposition: attachment;filename=file.mp4');
readfile($video_file);
?>Thank you
-
How to install ffmpeg in android [on hold]
17 novembre 2015, par zapacHi I need to download and install ffmpeg on andriod 4.2 mobile I have seen my sites that says its possible.but I cant understand any thing.as iam new here I don’t know anything about stackoverflow if its possible plzz post screen shots. And also plzz post direct download link for files.
-
How can I specify domain when downloading m3u8 file in ffmpeg ?
14 septembre 2022, par UmbrienI have
.m3u8
file and I am trying to download it like this :

ffmpeg -i file.m3u8 -c copy -bsf:a aac_adtstoasc output.mp4


It gives me errors about downloading it's parts.
I think it's due to the fact that playlist contains partial path to
.ts
fragments inside without domain in it since this command works fine if i'm specifying URL instead of input file name.

However, I'm using ffmpeg.wasm, which don't have http(s) download support as for now.


I guess maybe I could somehow specify initial domain for m3u8 file's parts so ffmpeg will know from where to download.