Recherche avancée

Médias (1)

Mot : - Tags -/remix

Autres articles (3)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

Sur d’autres sites (1741)

  • cover image not adding to mp3 using ffmpeg [duplicate]

    3 août 2021, par Rajkumar Maity

    The cover image is not adding to the mp3 file

    


    Here is my code : shell_exec("ffmpeg -y -i ./tmp/tmp -i ./cover.jpg -map 0:0 -map 1:0 -metadata title=" . escapeshellarg($title) . " -metadata artist='Tuneraja.com' -metadata album='' -metadata year='' -metadata publisher='Tuneraja.com' -metadata copyright='respected owner' -vn -ar 44100 -ac 2 -b:a 64k -filter:a 'volume=1.0' ./tmp/" . escapeshellarg($fileTitle) . ".mp3 2>&1"); create_mp3($title, $duration, 0, "./tmp/$fileTitle.mp3", $tags);

    


  • avfilter/af_silenceremove : cover default case too

    7 septembre 2021, par Paul B Mahol
    avfilter/af_silenceremove : cover default case too
    
    • [DH] libavfilter/af_silenceremove.c
  • Using ffmpeg to embed cover art into mp3 does not work with some images

    31 août 2016, par Yves

    I am using the code described here http://www.ffmpeg.org/ffmpeg-all.html#mp3 to embed cover art into an mp3 :

    ffmpeg -i input.mp3 -i cover.jpg -c copy -map 0 -map 1 -metadata:s:v title="Album cover" -metadata:s:v comment="Cover (Front)" out.mp3

    This works with most images such as youtube thumbnails (example that works : https://i.ytimg.com/vi/ubkWrjeCNGI/hqdefault.jpg), however when I try to embed any cover art from soundcloud such as https://i1.sndcdn.com/artworks-000174313329-x742lv-t500x500.jpg I get the following errors

    [image2 @ 0x7fb009008600] Could not find codec parameters for stream 0 (Video : mjpeg, none(bt470bg/unknown/unknown)) : unspecified size
    Consider increasing the value for the ’analyzeduration’ and ’probesize’ options

    https://i1.sndcdn.com/artworks-000174313329-x742lv-t500x500.jpg : could not find codec parameters

    [mp3 @ 0x7fb009029a00] dimensions not set

    Could not write header for output file #0 (incorrect codec parameters ?) : Invalid argument

    I have increased both of these parameters to MAX_INT64 to no avail. Whats even weirder is that if I download the image to my desktop first and then reference it in ffmpeg from there it works !

    Any ideas ? Thank you !