Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (36)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

Sur d’autres sites (5959)

  • ffmpeg scaling not working for video

    15 mai 2018, par Neer Patel

    I am trying to change the dimensions of the video file through FFMPEG.
    I want to convert any video file to 480*360 .

    This is the command that I am using...

    ffmpeg -i oldVideo.mp4 -vf scale=480:360 newVideo.mp4

    After this command 1280*720 dimensions are converted to 640*360.

    I have also attached video. it will take less than minute for any experts out there. Is there anything wrong ?

    You can see here. (in Video, after 20 seconds, direclty jump to 1:35 , rest is just processing time).

    UPDATE :

    I found the command from this tutorial

  • DIY video file streaming from linux/osx to iOS devices

    27 septembre 2016, par sfactor

    This is for a hobby project. I want to learn about video streaming and also create something that’s useful for me as well.

    The project should be able to run a server on my macbook and a client on my iPad that will allow me to watch the videos I’ve got stored on my laptop without having to copy them in my iPad over my wifi.

    I know there are solutions like Plex, Air Video etc. that allow me to do it. But since my goal is to practice writing some client/server code, I want to create something myself with the basic functionality of these apps.

    I figured I’d probably need something like ffmpeg and Apple’s HTTP Live Streaming (HLS), but I don’t have a Apple developer account to be able to use it. I do have Xcode in my mac. So, some free 3rd party library for HLS or something equivalent. I also fond this tool called https://www.bento4.com.

    How would I go about getting started with such an application and what are the libraries I could use to accomplish this ?

  • ffmpeg 'error parsing the packet header' when concatenating mp3 files

    27 décembre 2020, par Dtomper

    I downloaded many songs from youtube and mixed them using this command : ffmpeg -f concat -safe 0 -i mylist.txt -map 0:a mixed.mp3 where mylist.txt is a list of all the downloaded files.
During the exportation I kept getting the following error :

    


    [opus @ 0000022f1bea3700] Error parsing the packet header.
Error while decoding stream #0:0: Invalid data found when processing input
[opus @ 0000022f1bea3700] Error parsing the packet header.
Error while decoding stream #0:0: Invalid data found when processing input
[opus @ 0000022f1bea3700] Error parsing the packet header.
Error while decoding stream #0:0: Invalid data found when processing input
[opus @ 0000022f1bea3700] Error parsing the packet header.
Error while decoding stream #0:0: Invalid data found when processing input
[opus @ 0000022f1bea3700] Error parsing the packet header.
Error while decoding stream #0:0: Invalid data found when processing input
[opus @ 0000022f1bea3700] Error parsing the packet header.
Error while decoding stream #0:0: Invalid data found when processing input
[opus @ 0000022f1bea3700] Error parsing the packet header.
Error while decoding stream #0:0: Invalid data found when processing input
[opus @ 0000022f1bea3700] Error parsing the packet header.
Error while decoding stream #0:0: Invalid data found when processing input
[opus @ 0000022f1bea3700] Error parsing the packet header.
Error while decoding stream #0:0: Invalid data found when processing input
[opus @ 0000022f1bea3700] Error parsing the packet header.
Error while decoding stream #0:0: Invalid data found when processing input
[opus @ 0000022f1bea3700] Error parsing the packet header.
Error while decoding stream #0:0: Invalid data found when processing input


    


    After the mix was exported, I heard it and there was a weird sound playing when it was the turn of this song : https://www.youtube.com/watch?v=iY0RwKIG_BQ

    


    At first, I used youtube-dl to download the song from python. After that, I used https://ytmp3.cc/ but none of them worked. I keep getting this error and that weird sound in the mix file.