Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (32)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • 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

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

Sur d’autres sites (6936)

  • Export GPS Points from Dash Cam with FFMPEG ?

    31 octobre 2016, par Steve

    I have a Garmin Dash Cam 35 that outputs an MP4 that appears to have the GPS data I need encoded in the MP4. I’ve seen claims that they’re using SEI messages to do this, but using Intel Video Analyzer I’m not able to see those types of SEI messages.

    Does anyone know if they’re likely using SEI messages or if I can export those SEI messages from the video using ffmpeg or any other command line tool ? Even if they’re just in binary I may be able to figure out the structure.

    Edit : Sample video can be downloaded here (60MB) : https://drive.google.com/file/d/0B2o2cryfiWzANTJQdVJuNjY5SzQ/view?usp=sharing

  • Couldn't find platform family in Info.plist for dylib CFBundleSupported platforms or Mach-O LC_VERSION_MIN

    1er décembre 2016, par user2331687

    enter image description here

    I have developed a App (Mac OS) and I want release it to Mac App Store, and my App use the FFMPEG library, so there are many .dylib (as you can see, for example, libSDL-1.2.0.dylib), when I upload my App, and I got this error, I have googled several days, but I don’t know how to add the "platform family" to a .dylib, since the dylib is build from command line. Can anyone help me to solve this problem, thanks very much !

  • PHP exec - echo output line by line during progress

    16 décembre 2014, par Bren1818

    I’m trying to find a way in which I can echo out the output of an exec call, and then flush that to the screen while the process is running. I have written a simple PHP script which accepts a file upload and then converts the file if it is not the appropriate file type using FFMPEG. I am doing this on a windows machine. Currently my command looks like so :

    $cmd = "ffmpeg.exe -i ..\..\uploads\\".$filename." ..\..\uploads\\".$filename.".m4v 2>&1";
    exec( $cmd, $output);

    I need something like this :

    while( $output ) {
       print_r( $output);
       ob_flush();  flush();  
    }  

    I’ve read about using ob_flush() and flush() to clear the output buffer, but I only get output once the process has completed. The command works perfectly, It just doesn’t update the Page while converting. I’d like to have some output so the person knows what’s going on.

    I’ve set the time out

    set_time_limit( 10 * 60 ); //5 minute time out

    and would be very greatful if someone could put me in the right direction. I’ve looked at a number of solutions which come close one Stackoverflow, but none seem to have worked.