Recherche avancée

Médias (0)

Mot : - Tags -/optimisation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (23)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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 (4695)

  • Exe media file conversion to mp4

    31 mai 2016, par karthikpj

    I have an exe file which is actually a media file which I need to convert to mp4. It contains footage from CCTV cameras.When I open that exe file,a launcher called SecureView is opened and the video can be played inside that player.
    I need to convert that exe to mp4 for viewing it in other normal media players.
    I have used a tool called exe2swf but there was no swf file in it.
    Is there any way to separate that launcher from the video ?

  • getting video duration with ffmpeg, php function

    4 avril 2020, par keithp

    I have FFMpeg installed and I know it's functional, but i'm trying to get the duration time from a flv video through PHP but when I use this code :

    



    function mbmGetFLVDuration($file)

    



    /*  
* Determine video duration with ffmpeg   
* ffmpeg should be installed on your server.  
*/  

//$time = 00:00:00.000 format   
$ffmpeg = "../ffmpeg/ffmpeg";

$time =  exec("$ffmpeg -i $file 2>&1 | grep 'Duration' | cut -d ' ' -f 4 | sed s/,//");   

$duration = explode(":",$time);   
$duration_in_seconds = $duration[0]*3600 + $duration[1]*60+ round($duration[2]);   

return $duration_in_seconds;   


    



    



    and :

    



    $duration = mbmGetFLVDuration('http://www.videoaddsite.com/videos/intro.flv') ;
echo $duration ;

    



    I get an output of 220. THe video is 3:40. Can any help me on what i'm doing wrong, or if there's something else I can use ?

    


  • getting video duration with ffmpeg, php function

    17 novembre 2014, par keithp

    I have FFMpeg installed and I know it’s functional, but i’m trying to get the duration time from a flv video through PHP but when I use this code :

    function mbmGetFLVDuration($file)

    /*  
    * Determine video duration with ffmpeg  
    * ffmpeg should be installed on your server.  
    */  

    //$time = 00:00:00.000 format  
    $ffmpeg = "../ffmpeg/ffmpeg";

    $time =  exec("$ffmpeg -i $file 2>&1 | grep 'Duration' | cut -d ' ' -f 4 | sed s/,//");  

    $duration = explode(":",$time);  
    $duration_in_seconds = $duration[0]*3600 + $duration[1]*60+ round($duration[2]);  

    return $duration_in_seconds;  

    and :

    $duration = mbmGetFLVDuration(’http://www.videoaddsite.com/videos/intro.flv’) ;
    echo $duration ;

    I get an output of 220. THe video is 3:40. Can any help me on what i’m doing wrong, or if there’s something else I can use ?