Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (37)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP 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, par

    MediaSPIP 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 (5245)

  • FFMPEG "Invalid data found when processing input" MP4 to MP3

    10 février 2014, par CubeBoy69

    I have a question. I'm converting videos from youtube to mp3. From 1000 files around 150 files this message is in the log.

    /home/desktop/www/tmp/314629.mp4 : Invalid data found when processing input

    The thing is it's only about 10% of the conversions. How can i solve this issue ?

    I'm converting like this

    ffmpeg -y -i /home/desktop/www/tmp/'.$random_flv_name.'.'.$download_format.' -vn -map_metadata -1 -ab 192k /home/desktop/www/audio/'.$yt_video_id.'/songtitle.mp3
  • ffmpeg - improving quality

    14 juillet 2017, par jdjmedia

    My current CMS uses ffmpeg to encode videos. The source is MP4 and output is MP4. Here is the current line it uses :

    [2017-07-13 09:00:11] Executing : export
    FFMPEG_DATADIR=/home/httpd/html/domain.com/public_html/cms_admin//includes/presets/ ; /usr/local/bin/ffmpeg -y -i
    "/home/httpd/html/domain.com/public_html/cms_admin//storage//J80KTXaG4aE8FLHF0NZVUDB7PDMR487Q.mp4"
    -i "/home/httpd/html/members.domain.com/public_html/content/upload/scene/1080p/hys_katya.mp4"
    -i "/home/httpd/html/domain.com/public_html/cms_admin//storage//CZ6JY641aXDYCLNC7UTBMMCJRFXABJ6U.mp4"
    -filter_complex ’[0:0] [0:1] [1:0] [1:1] [2:0] [2:1] concat=n=3:v=1:a=1 [v] [a]’ -map ’[v]’ -map ’[a]’ -sn -b:v 12000k
    -vcodec h264 -pix_fmt yuv420p -r 30 -acodec aac -strict experimental -ab 127k -ar 44100 -ac 2 -dn -vpre hq -movflags faststart -s 1920x1080 -aspect 16:9 -f mp4 -vprofile high

    I have noticed that the quality it not that great. Any recommendations on what flags I might be able to use to make the output higher quality ?

  • PHP shell_exec wait for script to done ? [duplicate]

    6 mars 2016, par Melih Büyükbayram

    This question already has an answer here :

    I have a PHP script that queries a database for a list of jobs to be done and fires off other PHP scripts based on what it finds in the database (basically a process queue).

    Some of the scripts that the queue runner script executes may take 30 seconds or so to finish running (convert video, resizing images, etc).

    The problem is that shell_exec() in the queue runner script calls the processing scripts, but then doesn’t wait for them to finish, resulting in the queue not being completed.

    Queue runner script :

    #!/usr/bin/php
    <?php
       // Loop through database and find jobs to be done
       shell_exec("nohup $command > /dev/null 2> /dev/null & echo $! &");
    ?>

    Running the job script directly from the command line works and the PDF is created.

    Any ideas on how to fix this ? Or a better way to run a process queue ?